Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/View
diff options
context:
space:
mode:
Diffstat (limited to 'core/View')
-rw-r--r--core/View/Interface.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/core/View/Interface.php b/core/View/Interface.php
new file mode 100644
index 0000000000..99aa7c82cd
--- /dev/null
+++ b/core/View/Interface.php
@@ -0,0 +1,25 @@
+<?php
+/**
+ * Piwik - Open source web analytics
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ * @version $Id$
+ *
+ * @category Piwik
+ * @package Piwik
+ */
+
+/**
+ * Rendering interface for Piwik_View and Piwik_Visualization
+ *
+ * @package Piwik
+ */
+interface Piwik_View_Interface
+{
+ /**
+ * Outputs the data.
+ * @return mixed (image, array, html...)
+ */
+ function render();
+}