PluginProbe
Posts Table with Search & Sort / 1.2
Posts Table with Search & Sort v1.2
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 / includes / deprecated.php

deprecated.php in Posts Table with Search & Sort 1.2, at includes/deprecated.php

34 lines 989 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( __FUNCTION__, 'Replaced by \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 * @deprecated Replaced by \Barn2\Plugin\Posts_Table_Search_Sort\Table_Shortcode
17 */
18 class Posts_Data_Table_Shortcode {
19
20 public static function do_shortcode( $atts, $content = '' ) {
21 _doing_it_wrong( __FUNCTION__, 'Replaced by \Barn2\Plugin\Posts_Table_Search_Sort\Table_Shortcode->do_shortcode()', '1.2' );
22
23 $shortcode = new \Barn2\Plugin\Posts_Table_Search_Sort\Table_Shortcode();
24 return $shortcode->do_shortcode( $atts, $content );
25 }
26 }
27
28 /**
29 * @deprecated Replaced by \Barn2\Plugin\Posts_Table_Search_Sort\Simple_Posts_Table
30 */
31 class Posts_Data_Table_Simple extends \Barn2\Plugin\Posts_Table_Search_Sort\Simple_Posts_Table {
32
33 }
34