| 1 |
<?php |
| 2 |
/** |
| 3 |
* Google Analytics hook class. |
| 4 |
* |
| 5 |
* @package GoogleAnalytics |
| 6 |
*/ |
| 7 |
|
| 8 |
/** |
| 9 |
* Hook class. |
| 10 |
*/ |
| 11 |
class Ga_Hook { |
| 12 |
|
| 13 |
/** |
| 14 |
* Adds WordPress hooks. |
| 15 |
* |
| 16 |
* @param string $plugin_file_path Plugin file path string. |
| 17 |
*/ |
| 18 |
public static function add_hooks( $plugin_file_path ) { |
| 19 |
register_activation_hook( $plugin_file_path, 'Ga_Admin::activate_googleanalytics' ); |
| 20 |
register_deactivation_hook( $plugin_file_path, 'Ga_Admin::deactivate_googleanalytics' ); |
| 21 |
register_uninstall_hook( $plugin_file_path, 'Ga_Admin::uninstall_googleanalytics' ); |
| 22 |
} |
| 23 |
} |
| 24 |
|