| @@ -2,123 +2,126 @@ | ||
| 2 | 2 | |
| 3 | 3 | /** |
| 4 | 4 | * The main plugin file for Posts Table with Search & Sort. |
| 5 | 5 | * |
| 6 | - * @package Posts_Data_Table | |
| 7 | - * @author Barn2 Media <info@barn2.co.uk> | |
| 8 | - * @license GPLv3 | |
| 9 | - * @link http://barn2.co.uk | |
| 10 | - * @copyright 2016-2017 Barn2 Media Ltd | |
| 6 | + * @wordpress-plugin | |
| 7 | + * Plugin Name: Posts Table with Search & Sort | |
| 8 | + * Plugin URI: https://wordpress.org/plugins/posts-data-table/ | |
| 9 | + * Description: Provides a shortcode to show a list of your posts in an instantly searchable & sortable table. | |
| 10 | + * Version: 1.2 | |
| 11 | + * Author: Barn2 Media | |
| 12 | + * Author URI: https://barn2.co.uk | |
| 13 | + * Text Domain: posts-data-table | |
| 14 | + * Domain Path: /languages | |
| 11 | 15 | * |
| 12 | - * @wordpress-plugin | |
| 13 | - * Plugin Name: Posts Table with Search & Sort | |
| 14 | - * Description: Provides a shortcode to show a list of your posts in an instantly searchable & sortable table. | |
| 15 | - * Version: 1.1 | |
| 16 | - * Author: Barn2 Media | |
| 17 | - * Author URI: https://barn2.co.uk | |
| 18 | - * Text Domain: posts-data-table | |
| 19 | - * Domain Path: /languages | |
| 20 | - * License: GNU General Public License v3.0 | |
| 21 | - * License URI: http://www.gnu.org/licenses/gpl-3.0.html | |
| 16 | + * Copyright: Barn2 Media Ltd | |
| 17 | + * License: GNU General Public License v3.0 | |
| 18 | + * License URI: https://www.gnu.org/licenses/gpl.html | |
| 22 | 19 | */ |
| 23 | -// Prevent direct file access | |
| 24 | -if ( !defined( 'ABSPATH' ) ) { | |
| 25 | - exit; | |
| 26 | -} | |
| 27 | 20 | |
| 28 | -// Current version of this plugin | |
| 29 | -define( 'POSTS_DATA_TABLE_VERSION', '1.1' ); | |
| 21 | +namespace Barn2\Plugin\Posts_Table_Search_Sort { | |
| 30 | 22 | |
| 31 | -class Posts_Data_Table_Plugin { | |
| 23 | + // Prevent direct file access | |
| 24 | + if ( ! defined( '\ABSPATH' ) ) { | |
| 25 | + exit; | |
| 26 | + } | |
| 32 | 27 | |
| 33 | - public function __construct() { | |
| 34 | - $this->includes(); | |
| 28 | + use Barn2\Lib\Util; | |
| 35 | 29 | |
| 36 | - add_action( 'plugins_loaded', array( $this, 'maybe_load_plugin' ) ); | |
| 37 | - add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'add_plugin_settings_link' ) ); | |
| 38 | - } | |
| 30 | + /** | |
| 31 | + * The main plugin class. | |
| 32 | + * | |
| 33 | + * @author Barn2 Media <info@barn2.co.uk> | |
| 34 | + * @license GPL-3.0 | |
| 35 | + * @copyright Barn2 Media Ltd | |
| 36 | + */ | |
| 37 | + final class Plugin { | |
| 39 | 38 | |
| 40 | - private function includes() { | |
| 41 | - $includes = plugin_dir_path( __FILE__ ) . 'includes/'; | |
| 39 | + const VERSION = '1.2'; | |
| 40 | + const FILE = __FILE__; | |
| 42 | 41 | |
| 43 | - require_once $includes . 'class-posts-data-table-simple.php'; | |
| 44 | - require_once $includes . 'class-posts-data-table-shortcode.php'; | |
| 45 | - } | |
| 42 | + private $helpers; | |
| 46 | 43 | |
| 47 | - public function maybe_load_plugin() { | |
| 48 | - // Don't init plugin if Pro version exists | |
| 49 | - if ( class_exists( 'Posts_Table_Pro_Plugin' ) ) { | |
| 50 | - return; | |
| 44 | + /** | |
| 45 | + * The singleton instance | |
| 46 | + */ | |
| 47 | + private static $_instance = null; | |
| 48 | + | |
| 49 | + public static function instance() { | |
| 50 | + if ( is_null( self::$_instance ) ) { | |
| 51 | + self::$_instance = new self(); | |
| 52 | + } | |
| 53 | + return self::$_instance; | |
| 51 | 54 | } |
| 52 | 55 | |
| 53 | - // Load the text domain - should go on 'plugins_loaded' hook | |
| 54 | - $this->load_textdomain(); | |
| 56 | + public function load() { | |
| 57 | + add_action( 'plugins_loaded', array( $this, 'maybe_load_plugin' ) ); | |
| 58 | + } | |
| 55 | 59 | |
| 56 | - add_action( 'init', array( $this, 'init' ) ); | |
| 57 | - } | |
| 60 | + private function includes() { | |
| 61 | + require_once __DIR__ . '/includes/lib/interface-attachable.php'; | |
| 62 | + require_once __DIR__ . '/includes/lib/class-util.php'; | |
| 63 | + require_once __DIR__ . '/includes/lib/class-wp-settings-api-helper.php'; | |
| 58 | 64 | |
| 59 | - public function load_textdomain() { | |
| 60 | - load_plugin_textdomain( 'posts-data-table', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' ); | |
| 61 | - } | |
| 65 | + require_once __DIR__ . '/includes/class-settings.php'; | |
| 66 | + require_once __DIR__ . '/includes/class-simple-posts-table.php'; | |
| 67 | + require_once __DIR__ . '/includes/class-frontend-scripts.php'; | |
| 68 | + require_once __DIR__ . '/includes/class-table-shortcode.php'; | |
| 69 | + require_once __DIR__ . '/includes/deprecated.php'; | |
| 62 | 70 | |
| 63 | - public function init() { | |
| 64 | - new Posts_Data_Table_Shortcode(); | |
| 71 | + require_once __DIR__ . '/includes/admin/class-admin-controller.php'; | |
| 72 | + require_once __DIR__ . '/includes/admin/class-admin-settings-page.php'; | |
| 73 | + } | |
| 65 | 74 | |
| 66 | - // Register styles and scripts | |
| 67 | - add_action( 'wp_enqueue_scripts', array( $this, 'register_styles' ) ); | |
| 68 | - add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) ); | |
| 69 | - } | |
| 75 | + private function define_constants() { | |
| 76 | + define( 'PTSS_PLUGIN_BASENAME', plugin_basename( self::FILE ) ); | |
| 77 | + } | |
| 70 | 78 | |
| 71 | - public function register_styles() { | |
| 72 | - $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : 'min.'; | |
| 79 | + public function maybe_load_plugin() { | |
| 80 | + // Don't load plugin if Pro version active | |
| 81 | + if ( class_exists( '\Posts_Table_Pro_Plugin' ) ) { | |
| 82 | + return; | |
| 83 | + } | |
| 73 | 84 | |
| 74 | - wp_enqueue_style( 'jquery-data-tables', plugins_url( 'assets/css/datatables.min.css', __FILE__ ), array(), '1.10.15' ); | |
| 75 | - wp_enqueue_style( 'posts-data-table', plugins_url( "assets/css/posts-data-table.{$suffix}css", __FILE__ ), array( 'jquery-data-tables' ), POSTS_DATA_TABLE_VERSION ); | |
| 76 | - } | |
| 85 | + add_action( 'init', array( $this, 'init' ) ); | |
| 86 | + } | |
| 77 | 87 | |
| 78 | - public function register_scripts() { | |
| 79 | - $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : 'min.'; | |
| 88 | + public function init() { | |
| 89 | + $this->includes(); | |
| 90 | + $this->define_constants(); | |
| 91 | + $this->load_textdomain(); | |
| 80 | 92 | |
| 81 | - wp_enqueue_script( 'jquery-data-tables', plugins_url( "assets/js/datatables.{$suffix}js", __FILE__ ), array( 'jquery' ), '1.10.15', true ); | |
| 82 | - wp_enqueue_script( 'posts-data-table', plugins_url( "assets/js/posts-data-table.{$suffix}js", __FILE__ ), array( 'jquery-data-tables' ), POSTS_DATA_TABLE_VERSION, true ); | |
| 93 | + $this->helpers = array(); | |
| 83 | 94 | |
| 84 | - $locale = get_locale(); | |
| 85 | - $supported_locales = $this->get_supported_locales(); | |
| 95 | + if ( Util::is_admin() ) { | |
| 96 | + $this->helpers['admin'] = new Admin_Controller(); | |
| 97 | + } | |
| 86 | 98 | |
| 87 | - // Add language file to script if locale is supported (English file is not added as this is the default language) | |
| 88 | - if ( array_key_exists( $locale, $supported_locales ) ) { | |
| 89 | - wp_localize_script( 'posts-data-table', 'posts_data_table', array( | |
| 90 | - 'langurl' => $supported_locales[$locale] | |
| 91 | - ) ); | |
| 99 | + if ( Util::is_front_end() ) { | |
| 100 | + // Register the posts table shortcode | |
| 101 | + $this->helpers['shortcode'] = new Table_Shortcode(); | |
| 102 | + $this->helpers['scripts'] = new Frontend_Scripts(); | |
| 103 | + } | |
| 104 | + | |
| 105 | + foreach ( $this->helpers as $attachable ) { | |
| 106 | + $attachable->attach(); | |
| 107 | + } | |
| 92 | 108 | } |
| 109 | + | |
| 110 | + private function load_textdomain() { | |
| 111 | + load_plugin_textdomain( 'posts-data-table', false, dirname( plugin_basename( self::FILE ) ) . '/languages' ); | |
| 112 | + } | |
| 93 | 113 | } |
| 94 | 114 | |
| 95 | - public function add_plugin_settings_link( $links ) { | |
| 96 | - $links[] = sprintf( '<a href="%1$s" target="_blank">%2$s</a>', esc_url( 'https://barn2.co.uk/wordpress-plugins/posts-table-pro/' ), __( 'Pro Version', 'posts-data-table' ) ); | |
| 97 | - return $links; | |
| 98 | - } | |
| 115 | + // Load the plugin | |
| 116 | + Plugin::instance()->load(); | |
| 117 | +} | |
| 99 | 118 | |
| 100 | - /** | |
| 101 | - * Returns an array of locales supported by the plugin. | |
| 102 | - * The array returned uses the locale as the array key mapped to the URL of the corresponding translation file. | |
| 103 | - * | |
| 104 | - * @return array The supported locales | |
| 105 | - */ | |
| 106 | - private function get_supported_locales() { | |
| 107 | - $lang_file_base_url = plugins_url( 'languages/data-tables/', __FILE__ ); | |
| 119 | +namespace { | |
| 108 | 120 | |
| 109 | - return array( | |
| 110 | - 'es_ES' => $lang_file_base_url . 'Spanish.json', | |
| 111 | - 'fr_FR' => $lang_file_base_url . 'French.json', | |
| 112 | - 'fr_BE' => $lang_file_base_url . 'French.json', | |
| 113 | - 'fr_CA' => $lang_file_base_url . 'French.json', | |
| 114 | - 'de_DE' => $lang_file_base_url . 'German.json', | |
| 115 | - 'de_CH' => $lang_file_base_url . 'German.json', | |
| 116 | - 'el' => $lang_file_base_url . 'Greek.json', | |
| 117 | - 'el_EL' => $lang_file_base_url . 'Greek.json', | |
| 118 | - ); | |
| 121 | + if ( ! function_exists( 'posts_table_search_sort' ) ) { | |
| 122 | + | |
| 123 | + function posts_table_search_sort() { | |
| 124 | + return \Barn2\Plugin\Posts_Table_Search_Sort\Plugin::instance(); | |
| 125 | + } | |
| 119 | 126 | } |
| 120 | - | |
| 121 | 127 | } |
| 122 | -// end class | |
| 123 | - | |
| 124 | -$posts_data_table = new Posts_Data_Table_Plugin(); | |