PluginProbe
BetterLinks – Link Shortener, Link Cloaking, Redirects, Affiliate Link Manager & MCP / trunk
BetterLinks – Link Shortener, Link Cloaking, Redirects, Affiliate Link Manager & MCP vtrunk
3.1.3 3.1.2 3.1.1 3.1.0 3.0.1 3.0.0 2.4.13 2.4.12 2.4.11 2.4.10 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 All 110 releases
betterlinks / includes / Abstracts / MigrationNotice.php

MigrationNotice.php in BetterLinks – Link Shortener, Link Cloaking, Redirects, Affiliate Link Manager & MCP trunk, at includes/Abstracts/MigrationNotice.php

40 lines 689 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace BetterLinks\Abstracts;
4 if ( ! defined( 'ABSPATH' ) ) { exit; }
5
6 abstract class MigrationNotice
7 {
8 /**
9 * Initialize Hooks
10 *
11 * @since 1.2.4
12 * @return void
13 */
14 abstract public static function init();
15
16 /**
17 * Showing Notice Output
18 *
19 * @since 1.2.4
20 * @return void
21 */
22 abstract public function migration_notice();
23
24 /**
25 * Showing Notice Output
26 *
27 * @since 1.2.4
28 * @return void
29 */
30 abstract public function deactive_notice();
31
32 /**
33 * Load Javascript for send ajax request
34 *
35 * @since 1.2.4
36 * @return void
37 */
38 abstract public function admin_scripts();
39 }
40