Current Path : /var/test/www/foundation/wp-content/plugins/mp-timetable/ |
Current File : /var/test/www/foundation/wp-content/plugins/mp-timetable/mp-timetable.php |
<?php /** * Plugin Name: Timetable and Event Schedule * Plugin URI: http://www.getmotopress.com * Description: Smart time-management tool with a clean minimalist design for featuring your timetables and upcoming events. * Version: 2.1.8 * Author: MotoPress * Author URI: http://www.getmotopress.com * License: GPLv2 or later * Text Domain: mp-timetable * Domain Path: /languages */ /* * This plugin contains hooks that allow you to edit, add and move content without needing to edit template files. This method protects against upgrade issues. * Alternatively, you can copy template files from '/mp-timetable/templates/' folder to '/your-theme/mp-timetable/' to override them. */ use mp_timetable\plugin_core\classes\Core; define( "MP_TT_PLUGIN_NAME", 'mp-timetable' ); define( 'MP_TT_DEBUG', false ); register_activation_hook( __FILE__, array( Mp_Time_Table::init(), 'on_activation' ) ); register_deactivation_hook( __FILE__, array( 'Mp_Time_Table', 'on_deactivation' ) ); register_uninstall_hook( __FILE__, array( 'Mp_Time_Table', 'on_uninstall' ) ); add_action( 'plugins_loaded', array( 'Mp_Time_Table', 'init' ) ); add_action( 'wpmu_new_blog', array( 'Mp_Time_Table', 'on_create_blog' ), 10, 6 ); add_filter( 'wpmu_drop_tables', array( 'Mp_Time_Table', 'on_delete_blog' ) ); /** * Class Mp_Time_Table */ class Mp_Time_Table { protected static $instance; /** * Mp_Time_Table constructor. */ public function __construct() { $this->include_all(); Core::get_instance()->init_plugin( 'mp_timetable' ); } /** * Include all files */ public function include_all() { /** * Include Gump */ require_once self::get_plugin_path() . 'classes/libs/class-gump.php'; /** * Install Fire bug */ require_once self::get_plugin_path() . 'classes/libs/FirePHPCore/fb.php'; /** * Install Parsers */ require_once self::get_plugin_path() . 'classes/libs/parsers.php'; /** * Include Core */ require_once self::get_plugin_path() . 'classes/class-core.php'; /** * Include module */ require_once self::get_plugin_path() . 'classes/class-module.php'; /** * Include Model */ require_once self::get_plugin_path() . 'classes/class-model.php'; /** * Include Controller */ require_once self::get_plugin_path() . 'classes/class-controller.php'; /** * Include State factory */ require_once self::get_plugin_path() . 'classes/class-state-factory.php'; /** * Include Preprocessor */ require_once self::get_plugin_path() . 'classes/class-preprocessor.php'; /** * include shortcodes */ require_once( self::get_plugin_path() . 'classes/class-shortcode.php' ); /** * include Widgets */ require_once self::get_plugin_path() . 'classes/widgets/class-mp-timetable-widget.php'; /** * Include view */ require_once self::get_plugin_path() . 'classes/class-view.php'; /** * Include hooks */ require_once self::get_plugin_path() . 'classes/class-hooks.php'; } /** * Get plugin path */ public static function get_plugin_path() { return plugin_dir_path( __FILE__ ); } /** * @return Mp_Time_Table */ public static function init() { if ( null === self::$instance ) { self::$instance = new self(); } return self::$instance; } /** * Retrieve relative to theme root path to templates. * * @return string */ public static function get_template_path() { return apply_filters( 'mptt_template_path', 'mp-timetable/' ); } /** * Retrieve relative to plugin root path to templates. * * @return string */ public static function get_templates_path() { return self::get_plugin_path() . 'templates/'; } /** * Get plugin part path * * @param string $part * * @return string */ public static function get_plugin_part_path( $part = '' ) { return self::get_plugin_path() . $part; } /** * On activation defrozo plugin */ public static function on_activation() { // Register post type Core::get_instance()->register_all_post_type(); // Register taxonomy all Core::get_instance()->register_all_taxonomies(); flush_rewrite_rules(); //Create table in not exists Core::get_instance()->create_table(); } /** * On deactivation defrozo plugin */ public static function on_deactivation() { flush_rewrite_rules(); } /** * On uninstall */ public static function on_uninstall() { } /** * On create blog * * @param $blog_id * @param $user_id * @param $domain * @param $path * @param $site_id * @param $meta */ public static function on_create_blog( $blog_id, $user_id, $domain, $path, $site_id, $meta ) { if ( is_plugin_active_for_network( self::get_plugin_name() . '/' . self::get_plugin_name() . '.php' ) ) { switch_to_blog( $blog_id ); //Create table in not exists Core::get_instance()->create_table(); restore_current_blog(); } } /** * Get plugin name * * @return string */ public static function get_plugin_name() { return dirname( plugin_basename( __FILE__ ) ); } /** * On blog creation */ public static function on_delete_blog( $tables ) { $tables[] = self::get_datatable(); return $tables; } /** * Get data table name * * @return string */ public static function get_datatable() { global $wpdb; return $wpdb->prefix . "mp_timetable_data"; } /** * Get plugin url * * @param bool|false $path * @param string $pluginName * @param string $sync * * @return string */ static function get_plugin_url( $path = false, $pluginName = 'mp-timetable', $sync = '' ) { return plugins_url() . '/' . $pluginName . '/' . $path . $sync; } }