Admin
8 years ago
Column
8 years ago
Helper
8 years ago
ListScreen
8 years ago
Meta
8 years ago
Notice
8 years ago
Plugin
8 years ago
Relation
8 years ago
Settings
8 years ago
ThirdParty
8 years ago
API.php
8 years ago
Addon.php
8 years ago
Admin.php
8 years ago
Autoloader.php
8 years ago
Collection.php
8 years ago
Column.php
8 years ago
Groups.php
8 years ago
Helper.php
8 years ago
ListScreen.php
8 years ago
ListScreenPost.php
8 years ago
Plugin.php
8 years ago
PluginInformation.php
8 years ago
Preferences.php
8 years ago
Relation.php
8 years ago
TableScreen.php
8 years ago
View.php
8 years ago
ViewInterface.php
8 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 |