images
6 years ago
class-firebase-authentication-activator.php
6 years ago
class-firebase-authentication-deactivator.php
6 years ago
class-firebase-authentication-i18n.php
6 years ago
class-firebase-authentication-loader.php
6 years ago
class-firebase-authentication.php
6 years ago
index.php
6 years ago
class-firebase-authentication-activator.php
37 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Fired during plugin activation |
| 5 | * |
| 6 | * @link https://miniorange.com |
| 7 | * @since 1.0.0 |
| 8 | * |
| 9 | * @package Firebase_Authentication |
| 10 | * @subpackage Firebase_Authentication/includes |
| 11 | */ |
| 12 | |
| 13 | /** |
| 14 | * Fired during plugin activation. |
| 15 | * |
| 16 | * This class defines all code necessary to run during the plugin's activation. |
| 17 | * |
| 18 | * @since 1.0.0 |
| 19 | * @package Firebase_Authentication |
| 20 | * @subpackage Firebase_Authentication/includes |
| 21 | * @author miniOrange <info@miniorange.com> |
| 22 | */ |
| 23 | class MO_Firebase_Authentication_Activator { |
| 24 | |
| 25 | /** |
| 26 | * Short Description. (use period) |
| 27 | * |
| 28 | * Long Description. |
| 29 | * |
| 30 | * @since 1.0.0 |
| 31 | */ |
| 32 | public static function activate() { |
| 33 | |
| 34 | } |
| 35 | |
| 36 | } |
| 37 |