Asset
5 years ago
HelpTab
5 years ago
Main
5 years ago
Menu
5 years ago
Notice
5 years ago
Preference
5 years ago
ScreenOption
5 years ago
Section
5 years ago
AddonStatus.php
5 years ago
Admin.php
5 years ago
AdminNetwork.php
5 years ago
AdminScripts.php
5 years ago
Banner.php
5 years ago
HelpTab.php
5 years ago
Helpable.php
5 years ago
MainFactory.php
5 years ago
MainFactoryInterface.php
5 years ago
Menu.php
5 years ago
MenuFactory.php
5 years ago
MenuFactoryInterface.php
5 years ago
NetworkRequestHandler.php
5 years ago
Page.php
5 years ago
PageFactory.php
5 years ago
PageFactoryInterface.php
5 years ago
PageRequestHandler.php
5 years ago
RequestHandler.php
5 years ago
RequestHandlerInterface.php
5 years ago
ScreenOption.php
5 years ago
ScreenOptions.php
5 years ago
Section.php
5 years ago
SectionCollection.php
5 years ago
Table.php
5 years ago
Tooltip.php
5 years ago
WpMenuFactory.php
5 years ago
Table.php
54 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC\Admin; |
| 4 | |
| 5 | use AC\View; |
| 6 | use Traversable; |
| 7 | |
| 8 | abstract class Table { |
| 9 | |
| 10 | /** |
| 11 | * @var string |
| 12 | */ |
| 13 | protected $message; |
| 14 | |
| 15 | /** |
| 16 | * @return array |
| 17 | */ |
| 18 | abstract public function get_headings(); |
| 19 | |
| 20 | /** |
| 21 | * @return Traversable |
| 22 | */ |
| 23 | abstract public function get_rows(); |
| 24 | |
| 25 | /** |
| 26 | * @param string $key |
| 27 | * @param mixed $data |
| 28 | * |
| 29 | * @return string |
| 30 | */ |
| 31 | abstract public function get_column( $key, $data ); |
| 32 | |
| 33 | /** |
| 34 | * @return bool |
| 35 | */ |
| 36 | public function has_message() { |
| 37 | return null !== $this->message; |
| 38 | } |
| 39 | |
| 40 | public function get_message() { |
| 41 | return $this->message; |
| 42 | } |
| 43 | |
| 44 | public function render() { |
| 45 | $view = new View( [ |
| 46 | 'table' => $this, |
| 47 | ] ); |
| 48 | |
| 49 | $view->set_template( 'admin/table' ); |
| 50 | |
| 51 | return $view->render(); |
| 52 | } |
| 53 | |
| 54 | } |