HtmlEmailFooterView.php
6 years ago
HtmlReportEmailHeaderView.php
6 years ago
OneClickDone.php
6 years ago
RenderTokenParser.php
6 years ago
UIControl.php
6 years ago
ViewInterface.php
6 years ago
ViewInterface.php
26 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Piwik - free/libre analytics platform |
| 4 | * |
| 5 | * @link https://matomo.org |
| 6 | * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 7 | * |
| 8 | */ |
| 9 | |
| 10 | namespace Piwik\View; |
| 11 | |
| 12 | /** |
| 13 | * Rendering interface for all "view" types. |
| 14 | * |
| 15 | * @api |
| 16 | */ |
| 17 | interface ViewInterface |
| 18 | { |
| 19 | /** |
| 20 | * Returns data. |
| 21 | * |
| 22 | * @return string Serialized data, eg, (image, array, html...). |
| 23 | */ |
| 24 | public function render(); |
| 25 | } |
| 26 |