PluginProbe
Posts Table with Search & Sort / 1.4.4
Posts Table with Search & Sort v1.4.4
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 1.3.8 All 39 releases
posts-data-table / src / deprecated.php

deprecated.php in Posts Table with Search & Sort 1.4.4, at src/deprecated.php

36 lines 955 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * @deprecated Replaced by Barn2\Plugin\Posts_Table_Search_Sort\Plugin
5 */
6 class Posts_Data_Table_Plugin {
7
8 public static function instance() {
9 _doing_it_wrong( __METHOD__, 'Barn2\Plugin\Posts_Table_Search_Sort\Plugin::instance()', '1.2' );
10
11 return Barn2\Plugin\Posts_Table_Search_Sort\Plugin::instance();
12 }
13
14 }
15
16 /**
17 * @deprecated Replaced by Barn2\Plugin\Posts_Table_Search_Sort\Table_Shortcode
18 */
19 class Posts_Data_Table_Shortcode {
20
21 public static function do_shortcode( $atts, $content = '' ) {
22 _doing_it_wrong( __METHOD__, 'Barn2\Plugin\Posts_Table_Search_Sort\Table_Shortcode->do_shortcode()', '1.2' );
23
24 $shortcode = new Barn2\Plugin\Posts_Table_Search_Sort\Table_Shortcode();
25 return $shortcode->do_shortcode( $atts, $content );
26 }
27
28 }
29
30 /**
31 * @deprecated Replaced by Barn2\Plugin\Posts_Table_Search_Sort\Simple_Posts_Table
32 */
33 class Posts_Data_Table_Simple extends Barn2\Plugin\Posts_Table_Search_Sort\Simple_Posts_Table {
34
35 }
36