| 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 |
|