*/ class Mlsimport_Activator { /** * Short Description. (use period) * * Long Description. * * Runs once on plugin activation: clears the cached plugin-data schema transient * and ensures the activity tracking table exists. * * @since 1.0.0 * @return void */ public static function activate() { // Drop any stale cached schema so it is rebuilt fresh. delete_transient( 'mlsimport_plugin_data_schema' ); // Create (or update) the activity tracking table. mlsimport_create_activity_table(); } }