| 1 |
<?php |
| 2 |
|
| 3 |
namespace Templately\Core; |
| 4 |
|
| 5 |
use Templately\Admin\Roles; |
| 6 |
|
| 7 |
class Maintenance { |
| 8 |
/** |
| 9 |
* Init Maintenance |
| 10 |
* |
| 11 |
* @return void |
| 12 |
* @since 2.0.1 |
| 13 |
*/ |
| 14 |
public static function init() { |
| 15 |
register_activation_hook( TEMPLATELY_PLUGIN_BASENAME, [ __CLASS__, 'activation' ] ); |
| 16 |
register_uninstall_hook( TEMPLATELY_PLUGIN_BASENAME, [ __CLASS__, 'uninstall' ] ); |
| 17 |
register_deactivation_hook( TEMPLATELY_PLUGIN_BASENAME, [ __CLASS__, 'deactivation' ] ); |
| 18 |
add_action( 'admin_init', [ __CLASS__, 'maybe_redirect_templately' ] ); |
| 19 |
} |
| 20 |
|
| 21 |
/** |
| 22 |
* Runs on activation |
| 23 |
* |
| 24 |
* @return void |
| 25 |
* @since 2.0.1 |
| 26 |
*/ |
| 27 |
public static function activation( $network_wide ) { |
| 28 |
// Initialize Roles |
| 29 |
( new Roles() )->setup(); |
| 30 |
|
| 31 |
if ( wp_doing_ajax() ) { |
| 32 |
return; |
| 33 |
} |
| 34 |
|
| 35 |
if ( is_multisite() && $network_wide ) { |
| 36 |
return; |
| 37 |
} |
| 38 |
|
| 39 |
set_transient( 'templately_activation_redirect', true, MINUTE_IN_SECONDS ); |
| 40 |
} |
| 41 |
|
| 42 |
/** |
| 43 |
* Runs on activation |
| 44 |
* |
| 45 |
* @return void |
| 46 |
* @since 2.0.1 |
| 47 |
*/ |
| 48 |
public static function deactivation($network_wide) { |
| 49 |
// De-initialize Roles |
| 50 |
( new Roles() )->setup( true ); |
| 51 |
if ( is_multisite() && $network_wide ) { |
| 52 |
return; |
| 53 |
} |
| 54 |
|
| 55 |
set_transient( 'templately_activation_redirect', true, MINUTE_IN_SECONDS ); |
| 56 |
} |
| 57 |
|
| 58 |
|
| 59 |
/** |
| 60 |
* Runs on uninstallation. |
| 61 |
* |
| 62 |
* @return void |
| 63 |
* @since 2.0.1 |
| 64 |
*/ |
| 65 |
public static function uninstall() { |
| 66 |
|
| 67 |
} |
| 68 |
|
| 69 |
/** |
| 70 |
* Redirect on Active |
| 71 |
*/ |
| 72 |
public static function maybe_redirect_templately() { |
| 73 |
if ( ! get_transient( 'templately_activation_redirect' ) ) { |
| 74 |
return; |
| 75 |
} |
| 76 |
if ( wp_doing_ajax() ) { |
| 77 |
return; |
| 78 |
} |
| 79 |
|
| 80 |
delete_transient( 'templately_activation_redirect' ); |
| 81 |
if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
| 82 |
return; |
| 83 |
} |
| 84 |
// Safe Redirect to Templately Page |
| 85 |
wp_safe_redirect( admin_url( 'admin.php?page=templately&path=elementor/packs' ) ); |
| 86 |
exit; |
| 87 |
} |
| 88 |
} |
| 89 |
|