PluginProbe
ShareThis Dashboard for Google Analytics / 3.4.1
ShareThis Dashboard for Google Analytics v3.4.1
3.4.1 3.4.0 3.3.2 trunk 1.0.7 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.5 2.3.5 2.3.6 2.3.7 2.3.8 2.4.0 2.4.1 2.5.0 2.5.1 All 45 releases
googleanalytics / class / class-ga-hook.php

class-ga-hook.php in ShareThis Dashboard for Google Analytics 3.4.1, at class/class-ga-hook.php

24 lines 546 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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