PluginProbe
Posts Table with Search & Sort / 1.4.13
Posts Table with Search & Sort v1.4.13
1.4.13 trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2 1.3 1.3.1 1.3.1-v2 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 All 40 releases
← All changes | posts-data-table.php +34 -110 1.1.11.4.13 View file →
@@ -1,127 +1,51 @@
1 1 <?php
2 -
3 2 /**
4 3 * The main plugin file for Posts Table with Search & Sort.
5 4 *
6 - * @package Posts_Data_Table
7 - * @author Barn2 Media <info@barn2.co.uk>
5 + * @package Barn2\posts-table-search-sort
6 + * @author Barn2 Plugins <support@barn2.com>
8 7 * @license GPL-3.0
9 - * @link https://barn2.co.uk
10 - * @copyright 2016-2017 Barn2 Media Ltd
8 + * @copyright Barn2 Media Ltd
11 9 *
12 10 * @wordpress-plugin
13 - * Plugin Name: Posts Table with Search & Sort
14 - * Plugin URI: https://wordpress.org/plugins/posts-data-table/
15 - * Description: Provides a shortcode to show a list of your posts in an instantly searchable & sortable table.
16 - * Version: 1.1.1
17 - * Author: Barn2 Media
18 - * Author URI: https://barn2.co.uk
19 - * Text Domain: posts-data-table
20 - * Domain Path: /languages
11 + * Plugin Name: Posts Table with Search & Sort
12 + * Plugin URI: https://wordpress.org/plugins/posts-data-table/
13 + * Description: List your posts in an instantly searchable & sortable table.
14 + * Version: 1.4.13
15 + * Author: Barn2 Plugins
16 + * Author URI: https://barn2.com
17 + * Text Domain: posts-data-table
18 + * Domain Path: /languages
21 19 *
22 - * Copyright: 2016-2017 Barn2 Media Ltd
23 - * License: GNU General Public License v3.0
24 - * License URI: http://www.gnu.org/licenses/gpl-3.0.html
20 + * Requires at least: 6.1
21 + * Requires PHP: 7.4
22 + *
23 + * Copyright: Barn2 Media Ltd
24 + * License: GNU General Public License v3.0
25 + * License URI: https://www.gnu.org/licenses/gpl.html
25 26 */
27 +
28 +namespace Barn2\Plugin\Posts_Table_Search_Sort;
29 +
26 30 // Prevent direct file access
27 -if ( !defined( 'ABSPATH' ) ) {
31 +if ( ! defined( '\ABSPATH' ) ) {
28 32 exit;
29 33 }
30 34
31 -// Current version of this plugin
32 -define( 'POSTS_DATA_TABLE_VERSION', '1.1.1' );
35 +const PLUGIN_VERSION = '1.4.13';
36 +const PLUGIN_FILE = __FILE__;
33 37
34 -class Posts_Data_Table_Plugin {
38 +// Autoloader.
39 +require_once __DIR__ . '/vendor/autoload.php';
35 40
36 - public function __construct() {
37 - $this->includes();
38 -
39 - add_action( 'plugins_loaded', array( $this, 'maybe_load_plugin' ) );
40 - add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'add_plugin_settings_link' ) );
41 - }
42 -
43 - private function includes() {
44 - $includes = plugin_dir_path( __FILE__ ) . 'includes/';
45 -
46 - require_once $includes . 'class-posts-data-table-simple.php';
47 - require_once $includes . 'class-posts-data-table-shortcode.php';
48 - }
49 -
50 - public function maybe_load_plugin() {
51 - // Don't init plugin if Pro version exists
52 - if ( class_exists( 'Posts_Table_Pro_Plugin' ) ) {
53 - return;
54 - }
55 -
56 - // Load the text domain - should go on 'plugins_loaded' hook
57 - $this->load_textdomain();
58 -
59 - add_action( 'init', array( $this, 'init' ) );
60 - }
61 -
62 - public function load_textdomain() {
63 - load_plugin_textdomain( 'posts-data-table', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
64 - }
65 -
66 - public function init() {
67 - new Posts_Data_Table_Shortcode();
68 -
69 - // Register styles and scripts
70 - add_action( 'wp_enqueue_scripts', array( $this, 'register_styles' ) );
71 - add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) );
72 - }
73 -
74 - public function register_styles() {
75 - $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : 'min.';
76 -
77 - wp_enqueue_style( 'jquery-data-tables', plugins_url( 'assets/css/datatables/datatables.min.css', __FILE__ ), array(), '1.10.15' );
78 - wp_enqueue_style( 'posts-data-table', plugins_url( "assets/css/posts-data-table.{$suffix}css", __FILE__ ), array( 'jquery-data-tables' ), POSTS_DATA_TABLE_VERSION );
79 - }
80 -
81 - public function register_scripts() {
82 - $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : 'min.';
83 -
84 - wp_enqueue_script( 'jquery-data-tables', plugins_url( "assets/js/datatables/datatables.{$suffix}js", __FILE__ ), array( 'jquery' ), '1.10.15', true );
85 - 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 );
86 -
87 - $locale = get_locale();
88 - $supported_locales = $this->get_supported_locales();
89 -
90 - // Add language file to script if locale is supported (English file is not added as this is the default language)
91 - if ( array_key_exists( $locale, $supported_locales ) ) {
92 - wp_localize_script( 'posts-data-table', 'posts_data_table', array(
93 - 'langurl' => $supported_locales[$locale]
94 - ) );
95 - }
96 - }
97 -
98 - public function add_plugin_settings_link( $links ) {
99 - $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' ) );
100 - return $links;
101 - }
102 -
103 - /**
104 - * Returns an array of locales supported by the plugin.
105 - * The array returned uses the locale as the array key mapped to the URL of the corresponding translation file.
106 - *
107 - * @return array The supported locales
108 - */
109 - private function get_supported_locales() {
110 - $lang_file_base_url = plugins_url( 'languages/data-tables/', __FILE__ );
111 -
112 - return array(
113 - 'es_ES' => $lang_file_base_url . 'Spanish.json',
114 - 'fr_FR' => $lang_file_base_url . 'French.json',
115 - 'fr_BE' => $lang_file_base_url . 'French.json',
116 - 'fr_CA' => $lang_file_base_url . 'French.json',
117 - 'de_DE' => $lang_file_base_url . 'German.json',
118 - 'de_CH' => $lang_file_base_url . 'German.json',
119 - 'el' => $lang_file_base_url . 'Greek.json',
120 - 'el_EL' => $lang_file_base_url . 'Greek.json',
121 - );
122 - }
123 -
41 +/**
42 + * Helper function to access the shared plugin instance.
43 + *
44 + * @return Plugin
45 + */
46 +function posts_table_search_sort() {
47 + return Plugin_Factory::create( PLUGIN_FILE, PLUGIN_VERSION );
124 48 }
125 -// end class
126 49
127 -$posts_data_table = new Posts_Data_Table_Plugin();
50 +// Load the plugin.
51 +posts_table_search_sort()->register();