Addon
9 years ago
Admin
9 years ago
Column
9 years ago
Helper
9 years ago
ListScreen
9 years ago
Meta
9 years ago
Notice
9 years ago
Settings
9 years ago
ThirdParty
9 years ago
API.php
9 years ago
Addon.php
9 years ago
Addons.php
9 years ago
Admin.php
9 years ago
Autoloader.php
9 years ago
Collection.php
9 years ago
Column.php
9 years ago
Groups.php
9 years ago
Helper.php
9 years ago
ListScreen.php
9 years ago
ListScreenPost.php
9 years ago
PluginInformation.php
9 years ago
TableScreen.php
9 years ago
View.php
9 years ago
ViewInterface.php
9 years ago
ViewInterface.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | interface AC_ViewInterface { |
| 8 | |
| 9 | /** |
| 10 | * Get a string representation of this object |
| 11 | * |
| 12 | * @return string |
| 13 | */ |
| 14 | public function render(); |
| 15 | |
| 16 | /** |
| 17 | * Should call self::render when treated as a string |
| 18 | * |
| 19 | * @return string |
| 20 | */ |
| 21 | public function __toString(); |
| 22 | |
| 23 | } |
| 24 |