[Piwik-svn] r166 - in trunk: modules modules/API plugins/UserSettings

svnmaster at piwik.org svnmaster at piwik.org
Mon Jan 14 05:56:05 CET 2008


Author: matt
Date: 2008-01-14 05:56:04 +0100 (Mon, 14 Jan 2008)
New Revision: 166

Added:
   trunk/modules/iView.php
Modified:
   trunk/modules/API/Proxy.php
   trunk/plugins/UserSettings/API.php
Log:


Modified: trunk/modules/API/Proxy.php
===================================================================
--- trunk/modules/API/Proxy.php	2008-01-14 04:52:55 UTC (rev 165)
+++ trunk/modules/API/Proxy.php	2008-01-14 04:56:04 UTC (rev 166)
@@ -18,7 +18,8 @@
  * The proxy is a singleton that has the knowledge of every method available, their parameters and default values.
  * 
  * It can also log the performances of the API calls (time spent, parameter values, etc.)
- * 
+ * 
+ * @package Piwik_API
  */
 class Piwik_API_Proxy
 {

Added: trunk/modules/iView.php
===================================================================
--- trunk/modules/iView.php	                        (rev 0)
+++ trunk/modules/iView.php	2008-01-14 04:56:04 UTC (rev 166)
@@ -0,0 +1,13 @@
+<?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 $
+ */
+
+interface Piwik_iView
+{
+	function render();
+}
\ No newline at end of file

Modified: trunk/plugins/UserSettings/API.php
===================================================================
--- trunk/plugins/UserSettings/API.php	2008-01-14 04:52:55 UTC (rev 165)
+++ trunk/plugins/UserSettings/API.php	2008-01-14 04:56:04 UTC (rev 166)
@@ -5,12 +5,19 @@
  * @link http://piwik.org
  * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
  * @version $Id$
+ * 
+ * 
+ * @package Piwik_UserSettings
  */
 
 
 require_once "DataFiles/Browsers.php";
 require_once "DataFiles/OS.php";
-		
+		
+/**
+ * 
+ * @package Piwik_UserSettings
+ */
 class Piwik_UserSettings_API extends Piwik_Apiable
 {
 	static private $instance = null;



More information about the Piwik-svn mailing list