b0y-101 Mini Shell


Current Path : E:/www2/kidsbangna/wp-content/plugins/tlp-team/app/Helpers/
File Upload :
Current File : E:/www2/kidsbangna/wp-content/plugins/tlp-team/app/Helpers/Install.php

<?php
/**
 * Activation & Deactivation actions.
 *
 * @package RT/Team
 */

namespace RT\Team\Helpers;

// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
	exit( 'This script cannot be accessed directly.' );
}

/**
 * Activation & Deactivation actions.
 */
class Install {
	/**
	 * Activation actions.
	 *
	 * @return void
	 */
	public static function activate() {
		$activation = strtotime( 'now' );

		add_option( 'rtteam_plugin_activation_time', $activation );
		update_option( 'rtteam_activation_redirect', true );

		\flush_rewrite_rules();
	}

	/**
	 * Deactivation actions.
	 *
	 * @return void
	 */
	public static function deactivate() {
		\flush_rewrite_rules();
	}
}

Copyright © 2019 by b0y-101