芝麻web文件管理V1.00
编辑当前文件:/home/mybf1/www/pati.bf1.my/wp-content/plugins/all-in-one-seo-pack/app/Common/Main/Activate.php
transients->get( 'pro_just_deactivated_lite' ); if ( $proDeactivatedLite ) { aioseo()->transients->delete( 'pro_just_deactivated_lite', true ); $this->activate( false ); } } /** * Runs on activation. * * @since 4.0.17 * * @param bool $networkWide Whether or not this is a network wide activation. * @return void */ public function activate( $networkWide ) { aioseo()->access->addCapabilities(); // Make sure our tables exist. aioseo()->updates->addInitialCustomTablesForV4(); // Set the activation timestamps. $time = time(); aioseo()->internalOptions->internal->activated = $time; if ( ! aioseo()->internalOptions->internal->firstActivated ) { aioseo()->internalOptions->internal->firstActivated = $time; } aioseo()->transients->clearCache(); } /** * Runs on deactivation. * * @since 4.0.0 * * @return void */ public function deactivate() { aioseo()->access->removeCapabilities(); \AIOSEO\Plugin\Common\Sitemap\Rewrite::removeRewriteRules( [], true ); } }