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

iView.php « modules - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42003b4a72b4ae58e070d0609d72dd513787be27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?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: APIable.php 162 2008-01-14 04:27:21Z matt $
 * 
 * @package Piwik_Visualization
 */

/**
 * Piwik_ViewDataTable must create a $view attribute which implements this interface.
 * 
 * @package Piwik_Visualization
 */
interface Piwik_iView
{
	/**
	 * Outputs the data.
	 * Either outputs html, xml, an image, nothing, etc.
	 * 
	 * @return mixed
	 *
	 */
	function render();
}