Admin
2 years ago
Ajax
2 years ago
ApplyFilter
2 years ago
Asset
2 years ago
Capabilities
2 years ago
Check
2 years ago
Column
2 years ago
ColumnRepository
2 years ago
ColumnSize
2 years ago
Controller
2 years ago
Deprecated
2 years ago
Entity
2 years ago
Exception
2 years ago
Form
2 years ago
Helper
2 years ago
Integration
2 years ago
ListScreen
2 years ago
ListScreenFactory
2 years ago
ListScreenRepository
2 years ago
ListTable
2 years ago
Message
2 years ago
Meta
2 years ago
Nonce
2 years ago
Plugin
2 years ago
Preferences
2 years ago
Promo
2 years ago
Relation
2 years ago
Request
2 years ago
RequestHandler
2 years ago
Response
2 years ago
Sanitize
2 years ago
Screen
2 years ago
Service
2 years ago
Settings
2 years ago
Storage
2 years ago
Table
2 years ago
ThirdParty
2 years ago
Transient
2 years ago
Type
2 years ago
View
2 years ago
AdminColumns.php
2 years ago
ArrayIterator.php
2 years ago
Capabilities.php
2 years ago
Collection.php
2 years ago
Column.php
2 years ago
ColumnGroups.php
2 years ago
ColumnRepository.php
2 years ago
Config.php
2 years ago
Container.php
2 years ago
DefaultColumnsRepository.php
2 years ago
Dependencies.php
2 years ago
Expirable.php
2 years ago
Groups.php
2 years ago
Helper.php
2 years ago
Integration.php
2 years ago
IntegrationRepository.php
2 years ago
Integrations.php
2 years ago
Iterator.php
2 years ago
ListScreen.php
2 years ago
ListScreenCollection.php
2 years ago
ListScreenFactory.php
2 years ago
ListScreenGroupsFactory.php
2 years ago
ListScreenPost.php
2 years ago
ListScreenRepository.php
2 years ago
ListScreenRepositoryWritable.php
2 years ago
ListTable.php
2 years ago
ListTableFactory.php
2 years ago
Message.php
2 years ago
MetaType.php
2 years ago
Middleware.php
2 years ago
OpCacheInvalidateTrait.php
2 years ago
PluginActionLinks.php
2 years ago
PluginActionUpgrade.php
2 years ago
PluginUpdate.php
2 years ago
PostType.php
2 years ago
PostTypeRepository.php
2 years ago
Preferences.php
2 years ago
Promo.php
2 years ago
PromoCollection.php
2 years ago
Registerable.php
2 years ago
Relation.php
2 years ago
Renderable.php
2 years ago
Request.php
2 years ago
RequestAjaxHandler.php
2 years ago
RequestAjaxHandlers.php
2 years ago
RequestAjaxParser.php
2 years ago
Sanitize.php
2 years ago
Screen.php
2 years ago
ScreenController.php
2 years ago
Services.php
2 years ago
Stringable.php
2 years ago
Transient.php
2 years ago
TypedArrayIterator.php
2 years ago
View.php
2 years ago
ViewCollection.php
2 years ago
WpListTableFactory.php
2 years ago
ScreenController.php
89 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC; |
| 4 | |
| 5 | use AC\ColumnRepository\Sort\ManualOrder; |
| 6 | use AC\ListScreen\ManageValue; |
| 7 | |
| 8 | class ScreenController implements Registerable |
| 9 | { |
| 10 | |
| 11 | /** |
| 12 | * @var ListScreen |
| 13 | */ |
| 14 | private $list_screen; |
| 15 | |
| 16 | /** |
| 17 | * @var array |
| 18 | */ |
| 19 | private $headings = []; |
| 20 | |
| 21 | /** |
| 22 | * @var DefaultColumnsRepository |
| 23 | */ |
| 24 | private $default_columns; |
| 25 | |
| 26 | public function __construct(ListScreen $list_screen) |
| 27 | { |
| 28 | $this->list_screen = $list_screen; |
| 29 | $this->default_columns = new DefaultColumnsRepository(); |
| 30 | } |
| 31 | |
| 32 | public function register(): void |
| 33 | { |
| 34 | // Headings |
| 35 | add_filter($this->list_screen->get_heading_hookname(), [$this, 'add_headings'], 200); |
| 36 | |
| 37 | // Values |
| 38 | if ($this->list_screen instanceof ManageValue) { |
| 39 | $this->list_screen->manage_value()->register(); |
| 40 | } |
| 41 | |
| 42 | do_action('ac/table/list_screen', $this->list_screen); |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * @param $columns |
| 47 | * |
| 48 | * @return array |
| 49 | * @since 2.0 |
| 50 | */ |
| 51 | public function add_headings($columns) |
| 52 | { |
| 53 | if (empty($columns)) { |
| 54 | return $columns; |
| 55 | } |
| 56 | |
| 57 | if ( ! wp_doing_ajax()) { |
| 58 | $this->default_columns->update($this->list_screen->get_key(), $columns); |
| 59 | } |
| 60 | |
| 61 | // Run once |
| 62 | if ($this->headings) { |
| 63 | return $this->headings; |
| 64 | } |
| 65 | |
| 66 | // Nothing stored. Show default columns on screen. |
| 67 | if ( ! $this->list_screen->get_settings()) { |
| 68 | return $columns; |
| 69 | } |
| 70 | |
| 71 | // Add mandatory checkbox |
| 72 | if (isset($columns['cb'])) { |
| 73 | $this->headings['cb'] = $columns['cb']; |
| 74 | } |
| 75 | |
| 76 | $column_repository = new ColumnRepository($this->list_screen); |
| 77 | |
| 78 | $args = [ |
| 79 | ColumnRepository::ARG_SORT => new ManualOrder($this->list_screen->get_id()), |
| 80 | ]; |
| 81 | |
| 82 | foreach ($column_repository->find_all($args) as $column) { |
| 83 | $this->headings[$column->get_name()] = $column->get_custom_label(); |
| 84 | } |
| 85 | |
| 86 | return apply_filters('ac/headings', $this->headings, $this->list_screen); |
| 87 | } |
| 88 | |
| 89 | } |