1 | <?php |
||
8 | class GoogleMapsPlugin extends Plugin |
||
9 | { |
||
10 | /** |
||
11 | * Class constructor |
||
12 | */ |
||
13 | protected function __construct() |
||
22 | |||
23 | /** |
||
24 | * Get the plugin Name |
||
25 | * |
||
26 | * @return string |
||
27 | */ |
||
28 | public function get_name() |
||
32 | |||
33 | /** |
||
34 | * Instance the plugin |
||
35 | * @staticvar null $result |
||
36 | * @return GoogleMapsPlugin |
||
37 | */ |
||
38 | static function create() |
||
44 | |||
45 | /** |
||
46 | * Install the plugin |
||
47 | * @return void |
||
48 | */ |
||
49 | public function install() |
||
53 | |||
54 | /** |
||
55 | * Uninstall the plugin |
||
56 | * @return void |
||
57 | */ |
||
58 | public function uninstall() |
||
62 | } |
||
63 |