0byt3m1n1
Path:
/
var
/
lib
/
vz
/
www
/
clients
/
client6
/
web11
/
web
/
wp-content
/
plugins
/
googleanalytics
/
class
/
[
Home
]
File: Ga_Hook.php
<?php class Ga_Hook { /** * Adds WordPress hooks. * * @param string $plugin_file_path */ public static function add_hooks( $plugin_file_path ) { register_activation_hook( $plugin_file_path, 'Ga_Admin::activate_googleanalytics' ); register_deactivation_hook( $plugin_file_path, 'Ga_Admin::deactivate_googleanalytics' ); register_uninstall_hook( $plugin_file_path, 'Ga_Admin::uninstall_googleanalytics' ); } }