Admin
4 years ago
Ajax
4 years ago
Asset
4 years ago
Autoloader
4 years ago
Capabilities
4 years ago
Check
4 years ago
Column
4 years ago
ColumnRepository
4 years ago
Controller
4 years ago
Deprecated
4 years ago
Exception
4 years ago
Form
4 years ago
Helper
4 years ago
Integration
4 years ago
ListScreen
4 years ago
ListScreenRepository
4 years ago
ListTable
4 years ago
Message
4 years ago
Meta
4 years ago
Plugin
4 years ago
Preferences
4 years ago
Promo
4 years ago
Relation
4 years ago
Request
4 years ago
Response
4 years ago
Sanitize
4 years ago
Screen
4 years ago
Settings
4 years ago
Storage
4 years ago
Table
4 years ago
ThirdParty
4 years ago
Transient
4 years ago
Type
4 years ago
AdminColumns.php
4 years ago
ApplyFilter.php
4 years ago
ArrayIterator.php
4 years ago
Autoloader.php
4 years ago
Builder.php
4 years ago
Capabilities.php
4 years ago
Collection.php
4 years ago
Column.php
4 years ago
ColumnGroups.php
4 years ago
ColumnRepository.php
4 years ago
Config.php
4 years ago
DefaultColumnsRepository.php
4 years ago
Dependencies.php
4 years ago
EncodedListScreenData.php
4 years ago
EncodedListScreenDataFactory.php
4 years ago
Expirable.php
4 years ago
Groups.php
4 years ago
Helper.php
4 years ago
Integration.php
4 years ago
IntegrationRepository.php
4 years ago
Integrations.php
4 years ago
ListScreen.php
4 years ago
ListScreenCollection.php
4 years ago
ListScreenFactory.php
4 years ago
ListScreenGroups.php
4 years ago
ListScreenPost.php
4 years ago
ListScreenRepository.php
4 years ago
ListScreenRepositoryWritable.php
4 years ago
ListScreenTypes.php
4 years ago
ListScreenWP.php
4 years ago
ListScreens.php
4 years ago
ListTable.php
4 years ago
ListTableFactory.php
4 years ago
Message.php
4 years ago
MetaType.php
4 years ago
Middleware.php
4 years ago
NoticeChecks.php
4 years ago
OpCacheInvalidateTrait.php
4 years ago
PermissionChecker.php
4 years ago
Plugin.php
4 years ago
PluginActionLinks.php
4 years ago
PluginInformation.php
4 years ago
Preferences.php
4 years ago
Promo.php
4 years ago
PromoCollection.php
4 years ago
Registrable.php
4 years ago
Relation.php
4 years ago
Renderable.php
4 years ago
Request.php
4 years ago
Sanitize.php
4 years ago
Screen.php
4 years ago
ScreenController.php
4 years ago
Transient.php
4 years ago
TypedArrayIterator.php
4 years ago
View.php
4 years ago
WpListTableFactory.php
4 years ago
Screen.php
150 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC; |
| 4 | |
| 5 | use AC\Admin\RequestHandlerInterface; |
| 6 | use WP_Screen; |
| 7 | |
| 8 | class Screen implements Registrable { |
| 9 | |
| 10 | /** |
| 11 | * @var WP_Screen |
| 12 | */ |
| 13 | protected $screen; |
| 14 | |
| 15 | public function register() { |
| 16 | add_action( 'current_screen', [ $this, 'init' ] ); |
| 17 | } |
| 18 | |
| 19 | /** |
| 20 | * @param WP_Screen $screen |
| 21 | */ |
| 22 | public function init( WP_Screen $screen ) { |
| 23 | $this->set_screen( $screen ); |
| 24 | |
| 25 | do_action( 'ac/screen', $this, $this->screen->id ); |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * @param $id |
| 30 | * |
| 31 | * @return bool |
| 32 | */ |
| 33 | public function is_screen( $id ) { |
| 34 | return $this->has_screen() && $this->get_screen()->id === $id; |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * @param WP_Screen $screen |
| 39 | * |
| 40 | * @return $this |
| 41 | */ |
| 42 | public function set_screen( WP_Screen $screen ) { |
| 43 | $this->screen = $screen; |
| 44 | |
| 45 | return $this; |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * @return WP_Screen |
| 50 | */ |
| 51 | public function get_screen() { |
| 52 | return $this->screen; |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * @return bool |
| 57 | */ |
| 58 | public function has_screen() { |
| 59 | return $this->screen instanceof WP_Screen; |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * @return string |
| 64 | */ |
| 65 | public function get_id() { |
| 66 | return $this->screen->id; |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * @return string |
| 71 | */ |
| 72 | public function get_base() { |
| 73 | return $this->screen->base; |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * @return string |
| 78 | */ |
| 79 | public function get_post_type() { |
| 80 | return $this->screen->post_type; |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * @return string|null |
| 85 | */ |
| 86 | public function get_list_screen() { |
| 87 | foreach ( ListScreenTypes::instance()->get_list_screens() as $list_screen ) { |
| 88 | if ( $list_screen->is_current_screen( $this->screen ) ) { |
| 89 | return $list_screen->get_key(); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | return null; |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * @return bool |
| 98 | */ |
| 99 | private function is_admin_network() { |
| 100 | return $this->screen->in_admin( 'network' ); |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * @return bool |
| 105 | */ |
| 106 | public function is_list_screen() { |
| 107 | return null !== $this->get_list_screen(); |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Check if current screen is plugins screen |
| 112 | * @return bool |
| 113 | */ |
| 114 | public function is_plugin_screen() { |
| 115 | $id = 'plugins'; |
| 116 | |
| 117 | if ( $this->is_admin_network() ) { |
| 118 | $id .= '-network'; |
| 119 | } |
| 120 | |
| 121 | return $this->is_screen( $id ); |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * @param string|null $slug |
| 126 | * |
| 127 | * @return bool |
| 128 | */ |
| 129 | public function is_admin_screen( $slug = null ) { |
| 130 | if ( null !== $slug ) { |
| 131 | return $this->is_main_admin_screen() && $slug === filter_input( INPUT_GET, RequestHandlerInterface::PARAM_TAB ); |
| 132 | } |
| 133 | |
| 134 | return $this->is_main_admin_screen(); |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * @return bool |
| 139 | */ |
| 140 | private function is_main_admin_screen() { |
| 141 | $id = 'settings_page_' . Admin\Admin::NAME; |
| 142 | |
| 143 | if ( $this->is_admin_network() ) { |
| 144 | $id .= '-network'; |
| 145 | } |
| 146 | |
| 147 | return $this->is_screen( $id ); |
| 148 | } |
| 149 | |
| 150 | } |