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