*/ class AnalyticsPlugin extends VGPlugin { function __construct() { $this->register_hook('footer'); } function hook($type) { global $conf; if ($type == 'footer' && isset($conf['google_analytics'])) { $this->output( " "); } } }