Tribe__Admin__Notice__Archive_Slug_Conflict.php
8 years ago
Tribe__Events__Abstract_Deactivation.php
8 years ago
Tribe__Events__Admin__Helpers.php
8 years ago
Tribe__Events__App_Shop.php
8 years ago
Tribe__Events__Autoloader.php
8 years ago
Tribe__Events__Cache.php
8 years ago
Tribe__Events__Cache_Listener.php
8 years ago
Tribe__Events__Changelog_Reader.php
8 years ago
Tribe__Events__Credits.php
8 years ago
Tribe__Events__Date_Utils.php
8 years ago
Tribe__Events__Field.php
8 years ago
Tribe__Events__Settings.php
8 years ago
Tribe__Events__Settings_Tab.php
8 years ago
Tribe__Events__Support.php
8 years ago
Tribe__Events__Template_Part_Cache.php
8 years ago
Tribe__Events__Validate.php
8 years ago
Tribe__Events__View_Helpers.php
8 years ago
Tribe__Plugin_Download_Notice.php
8 years ago
Tribe__Admin__Notice__Archive_Slug_Conflict.php
28 lines
| 1 | <?php |
| 2 | _deprecated_file( __FILE__, '4.3', 'Tribe__Admin__Notices' ); |
| 3 | |
| 4 | class Tribe__Admin__Notice__Archive_Slug_Conflict { |
| 5 | protected static $instance; |
| 6 | |
| 7 | public static function instance() { |
| 8 | _deprecated_function( __METHOD__, '4.3', 'Tribe__Admin__Notices' ); |
| 9 | |
| 10 | if ( empty( self::$instance ) ) { |
| 11 | self::$instance = new self(); |
| 12 | } |
| 13 | |
| 14 | return self::$instance; |
| 15 | } |
| 16 | |
| 17 | public function maybe_add_admin_notice(){ |
| 18 | _deprecated_function( __METHOD__, '4.3', 'Tribe__Admin__Notices' ); |
| 19 | } |
| 20 | |
| 21 | public function maybe_dismiss(){ |
| 22 | _deprecated_function( __METHOD__, '4.3', 'Tribe__Admin__Notices' ); |
| 23 | } |
| 24 | |
| 25 | public function notice(){ |
| 26 | _deprecated_function( __METHOD__, '4.3', 'Tribe__Admin__Notices' ); |
| 27 | } |
| 28 | } |