PATH:
home
/
lab2454c
/
archfort.com
/
wp-content
/
plugins
/
update-urls
/
lite
/
includes
<?php /** * Fired during plugin activation * * @link https://kaizencoders.com * @since 1.2 * * @package Update_Urls * @subpackage Update_Urls/includes */ namespace Kaizencoders\Update_Urls; use Kaizencoders\Update_Urls\Install; /** * Fired during plugin activation. * * This class defines all code necessary to run during the plugin's activation. * * @since 1.2 * @package Update_Urls * @subpackage Update_Urls/includes * @author KaizenCoders <hello@kaizencoders.com> */ class Activator { /** * * @since 1.2 */ static $redirect_option = 'update_urls_do_activation_redirect'; /** * @param $network_wide * * @since 1.2 */ public static function activate( $network_wide ) { global $wpdb; if ( is_multisite() && $network_wide ) { // Get all active blogs in the network and activate plugin on each one $blog_ids = $wpdb->get_col( $wpdb->prepare( "SELECT `blog_id` FROM $wpdb->blogs WHERE deleted = %d", 0 ) ); foreach ( $blog_ids as $blog_id ) { self::activate_on_blog( $blog_id ); } } else { self::install(); add_option( self::$redirect_option, true ); } } /** * Activate on specific blog * * @param $blog_id * * @since 1.2 */ public static function activate_on_blog( $blog_id ) { switch_to_blog( $blog_id ); self::install(); add_option( self::$redirect_option, true ); restore_current_blog(); } /** * Run Installer * * @since 1.2 */ public static function install() { Install::install(); } }
[-] Settings.php
[edit]
[-] Plugin.php
[edit]
[-] Activator.php
[edit]
[-] index.php
[edit]
[+]
Upgrade
[-] Option.php
[edit]
[+]
..
[-] Frontend.php
[edit]
[-] Deactivator.php
[edit]
[-] Notice.php
[edit]
[-] I18n.php
[edit]
[+]
Admin
[-] Loader.php
[edit]
[+]
Common
[-] Tracker.php
[edit]
[-] Install.php
[edit]
[-] Feedback.php
[edit]
[+]
Frontend
[-] Admin.php
[edit]
[-] Cache.php
[edit]
[-] Helper.php
[edit]