Ver Mensaje Individual
  #5 (permalink)  
Antiguo 01/09/2008, 14:03
karloko210
 
Fecha de Ingreso: septiembre-2007
Mensajes: 50
Antigüedad: 17 años, 4 meses
Puntos: 0
Respuesta: Como agregar código de Google Analytics en php

Gracias amigos por sus respuestas.

Lo que ocurre es que si bien e encontrado la etiqueta boody en php como oscommerce, hay aplicaciones como gestores de clientes o support system, que sus index.php no tienen etiqueta boody, o bien no logro localizarla , y los datos de plantillas de la aplicación se cargan a través de XML, aquí esta el ejemplo del index, espero que puedan ayudarme, ya que lei que el código de analitic debe insertarse en todas las paginas,ya sea de web o aplicación.

<?php

error_reporting(E_ALL);



// +-------------------------------------------------------------+
// | $Id: index.php 2856 2006-11-26 08:17:50Z chris $
// +-------------------------------------------------------------+
// | File Details:
// | - User interface index page (home).
// +-------------------------------------------------------------+

################################################## INITIATE ##################################################

/****************
* Cache Templates
****************/

define('USING_CALLBACK', 0);
unset($callback);
$callback['cache_web_templates'] = array('FRONT_index', 'FRONT_header');

/****************
* Includes
****************/

require_once('./global.php');

/****************
* License Check
****************/

$license = new license("1088788289");

/****************
* Globalise Variables
****************/

/****************
* Default Variables
****************/

/****************
* No Cache Headers
****************/

no_cache_headers();

################################################## Knowledgebase ##################################################

if ($userobj->pKnowledgebase()) {

/****************
* Featured Articles
****************/

if ($settings['faq_front_show_featured']) {

$db->query("
SELECT * FROM faq_articles
WHERE
featured = 1
AND NOT to_validate
" . $faq->faq_cat_permission('category') . "
" . iff($settings['faq_front_noduplicates'], " AND id NOT IN " . array2sql($articleids)) . "
ORDER BY rand()
LIMIT {$settings['faq_front_show_featured']}
");

}

unset($articles);
while ($result = $db->row_array()) {
$articles[] = $faq->faq_article_date($result);
}

$set_loop_alteration = true;
eval(eval_template_web('toprate_articles', 'KB_front_articles'));
unset($set_loop_alteration);

$article_count = $faq->get_article_count();

}

################################################## TICKETS ##################################################

/**********************
* Get ticket count
**********************/

if ($user['id']) {
$ticket_count = $userobj->ticket_count;
}

################################################## TICKETS ##################################################

/**********************
* Get the files count
**********************/

if ($userobj->pFiles()) {
$files_count = count_files();
}

################################################## TROUBLESHOOTER ##################################################

/**********************
* Get the troubleshooter count
**********************/

if ($userobj->pTroubleshooter()) {

$result = $db->query_return("
SELECT COUNT(*) AS total
FROM trouble
LEFT JOIN trouble_permissions ON trouble.id = trouble_permissions.troubleid
WHERE publish = 1
AND groupid = " . intval($session['usergroup']) . "
");

$trouble_count = $result['total'];

}

################################################## RSS ##################################################

$extra_meta = '<link rel="alternate" type="application/rss+xml" title="' . phrase($dplang['rss_usernews'], $settings['site_name']) . '" href="feeds/usernews.php" />';

################################################## DISPLAY PAGE ##################################################

eval(eval_template_web('page_header', 'FRONT_header'));
prepare_user_headers();
eval(eval_template_web('echo', 'FRONT_index'));

?>