[Piwik-svn] r169 - in trunk: modules modules/API modules/ArchiveProcessing modules/DataTable/Filter modules/LogStats modules/ViewDataTable plugins plugins/API plugins/Actions plugins/ExamplePlugin plugins/Home plugins/Installation plugins/Login plugins/Logout plugins/Openads plugins/Provider plugins/Referers plugins/SitesManager plugins/UserCountry plugins/UsersManager plugins/VisitFrequency plugins/VisitTime plugins/VisitorInterest plugins/VisitsSummary
svnmaster at piwik.org
svnmaster at piwik.org
Mon Jan 14 06:41:16 CET 2008
Author: matt
Date: 2008-01-14 06:41:15 +0100 (Mon, 14 Jan 2008)
New Revision: 169
Modified:
trunk/modules/API/APIable.php
trunk/modules/Access.php
trunk/modules/Archive.php
trunk/modules/ArchiveProcessing.php
trunk/modules/ArchiveProcessing/Record.php
trunk/modules/DataTable.php
trunk/modules/DataTable/Filter/ColumnCallback.php
trunk/modules/LogStats.php
trunk/modules/LogStats/Generator.php
trunk/modules/Period.php
trunk/modules/TablePartitioning.php
trunk/modules/ViewDataTable/GenerateGraphData.php
trunk/modules/ViewDataTable/Graph.php
trunk/plugins/API/Controller.php
trunk/plugins/Actions.php
trunk/plugins/Actions/API.php
trunk/plugins/ExamplePlugin.php
trunk/plugins/ExamplePlugin/API.php
trunk/plugins/ExamplePlugin/Controller.php
trunk/plugins/Home/Controller.php
trunk/plugins/Installation.php
trunk/plugins/Installation/Controller.php
trunk/plugins/Installation/FormDatabaseSetup.php
trunk/plugins/Installation/FormFirstWebsiteSetup.php
trunk/plugins/Installation/FormGeneralSetup.php
trunk/plugins/Installation/View.php
trunk/plugins/Login.php
trunk/plugins/Login/Controller.php
trunk/plugins/Login/Form.php
trunk/plugins/Logout/Controller.php
trunk/plugins/Openads.php
trunk/plugins/Openads/Controller.php
trunk/plugins/Provider.php
trunk/plugins/Provider/API.php
trunk/plugins/Referers.php
trunk/plugins/Referers/API.php
trunk/plugins/SitesManager.php
trunk/plugins/SitesManager/API.php
trunk/plugins/SitesManager/Controller.php
trunk/plugins/UserCountry.php
trunk/plugins/UserCountry/API.php
trunk/plugins/UserSettings.php
trunk/plugins/UsersManager.php
trunk/plugins/UsersManager/API.php
trunk/plugins/UsersManager/Controller.php
trunk/plugins/VisitFrequency.php
trunk/plugins/VisitFrequency/API.php
trunk/plugins/VisitTime.php
trunk/plugins/VisitTime/API.php
trunk/plugins/VisitorInterest.php
trunk/plugins/VisitorInterest/API.php
trunk/plugins/VisitsSummary.php
trunk/plugins/VisitsSummary/API.php
Log:
Added phpdoc package
Modified: trunk/modules/API/APIable.php
===================================================================
--- trunk/modules/API/APIable.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/modules/API/APIable.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,7 +9,8 @@
* @package Piwik_API
*/
-
+
+require_once "Archive.php";
/**
* This class is the parent class of all the modules that can be called using the API Proxy.
* For example a plugin "Provider" can publish its API by creating a file plugins/Provider/API.php
@@ -20,7 +21,6 @@
* @package Piwik_API
* @see Piwik_API_Proxy
*/
-require_once "Archive.php";
abstract class Piwik_Apiable
{
Modified: trunk/modules/Access.php
===================================================================
--- trunk/modules/Access.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/modules/Access.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -10,6 +10,7 @@
*
*/
+require_once 'SitesManager/API.php';
/**
* Class to handle User Access.
* In Piwik there are mainly 4 access levels
@@ -31,7 +32,6 @@
*
* @package Piwik
*/
-require_once 'SitesManager/API.php';
class Piwik_Access
{
@@ -238,6 +238,10 @@
}
}
}
-
+
+/**
+ *
+ * @package Piwik
+ */
class Piwik_Access_NoAccessException extends Exception
{}
\ No newline at end of file
Modified: trunk/modules/Archive.php
===================================================================
--- trunk/modules/Archive.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/modules/Archive.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,6 +9,11 @@
* @package Piwik
*/
+
+require_once 'Period.php';
+require_once 'Date.php';
+require_once 'ArchiveProcessing.php';
+
/**
* Architecture
* - *ArchiveProcessing* entity : handle all the computation on an archive / create & delete archive
@@ -26,10 +31,6 @@
*
* @package Piwik
*/
-
-require_once 'Period.php';
-require_once 'Date.php';
-require_once 'ArchiveProcessing.php';
class Piwik_Archive
{
Modified: trunk/modules/ArchiveProcessing/Record.php
===================================================================
--- trunk/modules/ArchiveProcessing/Record.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/modules/ArchiveProcessing/Record.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -45,7 +45,8 @@
}
/**
- *
+ *
+ * @package Piwik_ArchiveProcessing
* @subpackage Piwik_ArchiveProcessing_Record
*/
class Piwik_ArchiveProcessing_Record_Manager
@@ -132,7 +133,8 @@
/**
* Numeric record.
* Example: $record = new Piwik_ArchiveProcessing_Record_Numeric('nb_visitors_live', 15);
- *
+ *
+ * @package Piwik_ArchiveProcessing
* @subpackage Piwik_ArchiveProcessing_Record
*/
class Piwik_ArchiveProcessing_Record_Numeric extends Piwik_ArchiveProcessing_Record
@@ -151,7 +153,9 @@
/**
* Blob record.
* Example: $record = new Piwik_ArchiveProcessing_Record_Blob('visitor_names', serialize(array('piwik-fan', 'php', 'stevie-vibes')));
- * The value will be compressed before being saved in the DB.
+ * The value will be compressed before being saved in the DB.
+ *
+ * @package Piwik_ArchiveProcessing
* @subpackage Piwik_ArchiveProcessing_Record
*/
class Piwik_ArchiveProcessing_Record_Blob extends Piwik_ArchiveProcessing_Record
@@ -187,7 +191,8 @@
* veryLongBook_1 => Y
* veryLongBook_2 => Z
* veryLongBook_3 => M
- *
+ *
+ * @package Piwik_ArchiveProcessing
* @subpackage Piwik_ArchiveProcessing_Record
*/
class Piwik_ArchiveProcessing_Record_Blob_Array extends Piwik_ArchiveProcessing_Record
Modified: trunk/modules/ArchiveProcessing.php
===================================================================
--- trunk/modules/ArchiveProcessing.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/modules/ArchiveProcessing.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,6 +9,9 @@
* @package Piwik_ArchiveProcessing
*/
+require_once 'TablePartitioning.php';
+require_once 'ArchiveProcessing/Record.php';
+require_once 'DataTable.php';
/**
* The ArchiveProcessing module is a module that reads the Piwik logs from the DB and
* compute all the reports, which are then stored in the database.
@@ -25,9 +28,6 @@
*
* @package Piwik_ArchiveProcessing
*/
-require_once 'TablePartitioning.php';
-require_once 'ArchiveProcessing/Record.php';
-require_once 'DataTable.php';
abstract class Piwik_ArchiveProcessing
{
Modified: trunk/modules/DataTable/Filter/ColumnCallback.php
===================================================================
--- trunk/modules/DataTable/Filter/ColumnCallback.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/modules/DataTable/Filter/ColumnCallback.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -5,6 +5,8 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
* @version $Id$
+ *
+ * @package Piwik_DataTable
*/
/**
Modified: trunk/modules/DataTable.php
===================================================================
--- trunk/modules/DataTable.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/modules/DataTable.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,6 +9,11 @@
* @package Piwik_DataTable
*/
+require_once "DataTable/Renderer.php";
+require_once "DataTable/Renderer/Console.php";
+require_once "DataTable/Filter.php";
+require_once "DataTable/Row.php";
+require_once "DataTable/Manager.php";
/**
*
* Initial Specification
@@ -120,11 +125,6 @@
* @subpackage Piwik_DataTable
*
*/
-require_once "DataTable/Renderer.php";
-require_once "DataTable/Renderer/Console.php";
-require_once "DataTable/Filter.php";
-require_once "DataTable/Row.php";
-require_once "DataTable/Manager.php";
class Piwik_DataTable
{
Modified: trunk/modules/LogStats/Generator.php
===================================================================
--- trunk/modules/LogStats/Generator.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/modules/LogStats/Generator.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -525,7 +525,9 @@
/**
* Fake Piwik_LogStats that simply overwrite the sendHeader method
- * so that no headers are sent
+ * so that no headers are sent
+ *
+ * @package Piwik_LogStats
*/
class Piwik_LogStats_Generator_Main extends Piwik_LogStats
{
@@ -541,7 +543,10 @@
/**
* Fake Piwik_LogStats_Visit class that overwrite all the Time related method to be able
- * to setup a given timestamp for the generated visitor and actions.
+ * to setup a given timestamp for the generated visitor and actions.
+ *
+ *
+ * @package Piwik_LogStats
*/
class Piwik_LogStats_Generator_Visit extends Piwik_LogStats_Visit
{
Modified: trunk/modules/LogStats.php
===================================================================
--- trunk/modules/LogStats.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/modules/LogStats.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -38,16 +38,12 @@
* We could also imagine a batch system that would read a log file every 5min,
* and which prepares the file containg the rows to insert, then we load DATA INFILE
*
+ *
+ * Configuration options for the statsLogEngine module:
+ * - use_cookie ; defines if we try to get/set a cookie to help recognize a unique visitor
*
* @package Piwik_LogStats
*/
-
-/**
- * Configuration options for the statsLogEngine module:
- * - use_cookie ; defines if we try to get/set a cookie to help recognize a unique visitor
- */
-
-
class Piwik_LogStats
{
private $stateValid;
Modified: trunk/modules/Period.php
===================================================================
--- trunk/modules/Period.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/modules/Period.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -207,7 +207,11 @@
return $this->date->get($part);
}
}
-
+
+/**
+ *
+ * @package Piwik_Period
+ */
class Piwik_Period_Day extends Piwik_Period
{
protected $label = 'day';
@@ -243,7 +247,11 @@
}
-
+
+/**
+ *
+ * @package Piwik_Period
+ */
class Piwik_Period_Week extends Piwik_Period
{
protected $label = 'week';
@@ -277,7 +285,11 @@
}
}
-
+
+/**
+ *
+ * @package Piwik_Period
+ */
class Piwik_Period_Month extends Piwik_Period
{
protected $label = 'month';
@@ -318,8 +330,12 @@
return ( date("m") > $this->date->get("m") && date("Y") == $year)
|| date("Y") > $year;
}
-}
-
+}
+
+/**
+ *
+ * @package Piwik_Period
+ */
class Piwik_Period_Year extends Piwik_Period
{
protected $label = 'year';
Modified: trunk/modules/TablePartitioning.php
===================================================================
--- trunk/modules/TablePartitioning.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/modules/TablePartitioning.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -79,7 +79,11 @@
return $this->getTableName();
}
}
-
+
+/**
+ *
+ * @package Piwik
+ */
class Piwik_TablePartitioning_Monthly extends Piwik_TablePartitioning
{
public function __construct( $tableName )
@@ -96,7 +100,11 @@
return $prefixTables . $this->tableName . "_" . $date;
}
-}
+}
+/**
+ *
+ * @package Piwik
+ */
class Piwik_TablePartitioning_Daily extends Piwik_TablePartitioning
{
public function __construct( $tableName )
Modified: trunk/modules/ViewDataTable/GenerateGraphData.php
===================================================================
--- trunk/modules/ViewDataTable/GenerateGraphData.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/modules/ViewDataTable/GenerateGraphData.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -92,6 +92,11 @@
}
}
+/**
+ *
+ * @package Piwik_ViewDataTable
+ *
+ */
class Piwik_ViewDataTable_GenerateGraphData_ChartPie extends Piwik_ViewDataTable_GenerateGraphData
{
function __construct()
@@ -100,6 +105,11 @@
$this->view = new Piwik_Visualization_ChartPie;
}
}
+/**
+ *
+ * @package Piwik_ViewDataTable
+ *
+ */
class Piwik_ViewDataTable_GenerateGraphData_ChartVerticalBar extends Piwik_ViewDataTable_GenerateGraphData
{
function __construct()
Modified: trunk/modules/ViewDataTable/Graph.php
===================================================================
--- trunk/modules/ViewDataTable/Graph.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/modules/ViewDataTable/Graph.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -123,6 +123,11 @@
}
}
+/**
+ *
+ * @package Piwik_ViewDataTable
+ *
+ */
class Piwik_ViewDataTable_Graph_ChartPie extends Piwik_ViewDataTable_Graph
{
function __construct()
@@ -131,6 +136,11 @@
}
}
+/**
+ *
+ * @package Piwik_ViewDataTable
+ *
+ */
class Piwik_ViewDataTable_Graph_ChartVerticalBar extends Piwik_ViewDataTable_Graph
{
function __construct()
Modified: trunk/plugins/API/Controller.php
===================================================================
--- trunk/plugins/API/Controller.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/API/Controller.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -5,10 +5,17 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
* @version $Id$
+ *
+ * @package Piwik_API
*/
require_once "API/Request.php";
-
+
+
+/**
+ *
+ * @package Piwik_API
+ */
class Piwik_API_Controller extends Piwik_Controller
{
function index()
Modified: trunk/plugins/Actions/API.php
===================================================================
--- trunk/plugins/Actions/API.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Actions/API.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -12,8 +12,12 @@
require_once "DataFiles/Browsers.php";
require_once "DataFiles/OS.php";
-require_once "Actions.php";
-
+require_once "Actions.php";
+
+/**
+ *
+ * @package Piwik_Actions
+ */
class Piwik_Actions_API extends Piwik_Apiable
{
static private $instance = null;
Modified: trunk/plugins/Actions.php
===================================================================
--- trunk/plugins/Actions.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Actions.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -8,7 +8,12 @@
*
* @package Piwik_Actions
*/
-
+
+
+/**
+ *
+ * @package Piwik_Actions
+ */
class Piwik_Actions extends Piwik_Plugin
{
static protected $actionCategoryDelimiter = null;
Modified: trunk/plugins/ExamplePlugin/API.php
===================================================================
--- trunk/plugins/ExamplePlugin/API.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/ExamplePlugin/API.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,6 +9,12 @@
* @package Piwik_ExamplePlugin
*/
+
+
+/**
+ *
+ * @package Piwik_ExamplePlugin
+ */
class MagicObject
{
function Incredible(){ return 'Incroyable'; }
@@ -16,6 +22,11 @@
public $great = 'formidable';
}
+
+/**
+ *
+ * @package Piwik_ExamplePlugin
+ */
class Piwik_ExamplePlugin_API extends Piwik_Apiable
{
static private $instance = null;
Modified: trunk/plugins/ExamplePlugin/Controller.php
===================================================================
--- trunk/plugins/ExamplePlugin/Controller.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/ExamplePlugin/Controller.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,7 +9,12 @@
* @package Piwik_ExamplePlugin
*/
-
+
+
+/**
+ *
+ * @package Piwik_ExamplePlugin
+ */
class Piwik_ExamplePlugin_Controller extends Piwik_Controller
{
function getDefaultAction()
Modified: trunk/plugins/ExamplePlugin.php
===================================================================
--- trunk/plugins/ExamplePlugin.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/ExamplePlugin.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -8,7 +8,12 @@
*
* @package Piwik_ExamplePlugin
*/
-
+
+
+/**
+ *
+ * @package Piwik_ExamplePlugin
+ */
class Piwik_ExamplePlugin extends Piwik_Plugin
{
public function __construct()
Modified: trunk/plugins/Home/Controller.php
===================================================================
--- trunk/plugins/Home/Controller.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Home/Controller.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -5,11 +5,19 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
* @version $Id$
+ *
+ * @package Piwik_Home
+ *
*/
require_once "API/Request.php";
-require_once "ViewDataTable.php";
+require_once "ViewDataTable.php";
+
+/**
+ *
+ * @package Piwik_Home
+ */
class Piwik_Home_Controller extends Piwik_Controller
{
function getDefaultAction()
Modified: trunk/plugins/Installation/Controller.php
===================================================================
--- trunk/plugins/Installation/Controller.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Installation/Controller.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -10,7 +10,12 @@
*/
require_once "View.php";
-require_once "Installation/View.php";
+require_once "Installation/View.php";
+
+/**
+ *
+ * @package Piwik_Installation
+ */
class Piwik_Installation_Controller extends Piwik_Controller
{
// public so plugins can modify it
Modified: trunk/plugins/Installation/FormDatabaseSetup.php
===================================================================
--- trunk/plugins/Installation/FormDatabaseSetup.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Installation/FormDatabaseSetup.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,7 +9,12 @@
* @package Piwik_Installation
*/
-require_once "modules/Form.php";
+require_once "modules/Form.php";
+
+/**
+ *
+ * @package Piwik_Installation
+ */
class Piwik_Installation_FormDatabaseSetup extends Piwik_Form
{
function init()
Modified: trunk/plugins/Installation/FormFirstWebsiteSetup.php
===================================================================
--- trunk/plugins/Installation/FormFirstWebsiteSetup.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Installation/FormFirstWebsiteSetup.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,7 +9,12 @@
* @package Piwik_Installation
*/
-require_once "modules/Form.php";
+require_once "modules/Form.php";
+
+/**
+ *
+ * @package Piwik_Installation
+ */
class Piwik_Installation_FormFirstWebsiteSetup extends Piwik_Form
{
function init()
Modified: trunk/plugins/Installation/FormGeneralSetup.php
===================================================================
--- trunk/plugins/Installation/FormGeneralSetup.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Installation/FormGeneralSetup.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,7 +9,12 @@
* @package Piwik_Installation
*/
-require_once "modules/Form.php";
+require_once "modules/Form.php";
+
+/**
+ *
+ * @package Piwik_Installation
+ */
class Piwik_Installation_FormGeneralSetup extends Piwik_Form
{
function init()
Modified: trunk/plugins/Installation/View.php
===================================================================
--- trunk/plugins/Installation/View.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Installation/View.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,6 +9,11 @@
* @package Piwik_Installation
*/
+
+/**
+ *
+ * @package Piwik_Installation
+ */
class Piwik_Install_View extends Piwik_View
{
protected $mainTemplate = 'Installation/templates/structure.tpl';
Modified: trunk/plugins/Installation.php
===================================================================
--- trunk/plugins/Installation.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Installation.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -10,7 +10,12 @@
*/
-require_once "Installation/Controller.php";
+require_once "Installation/Controller.php";
+
+/**
+ *
+ * @package Piwik_Installation
+ */
class Piwik_Installation extends Piwik_Plugin
{
protected $installationControllerName = 'Piwik_Installation_Controller';
Modified: trunk/plugins/Login/Controller.php
===================================================================
--- trunk/plugins/Login/Controller.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Login/Controller.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -12,7 +12,12 @@
require_once "UsersManager/API.php";
require_once "Login/Form.php";
require_once "View.php";
-
+
+
+/**
+ *
+ * @package Piwik_Login
+ */
class Piwik_Login_Controller extends Piwik_Controller
{
function getDefaultAction()
Modified: trunk/plugins/Login/Form.php
===================================================================
--- trunk/plugins/Login/Form.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Login/Form.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,7 +9,12 @@
* @package Piwik_Login
*/
-require_once "modules/Form.php";
+require_once "modules/Form.php";
+
+/**
+ *
+ * @package Piwik_Login
+ */
class Piwik_Login_Form extends Piwik_Form
{
function __construct()
Modified: trunk/plugins/Login.php
===================================================================
--- trunk/plugins/Login.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Login.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -10,7 +10,12 @@
*/
require "Login/Controller.php";
require "Cookie.php";
-
+
+
+/**
+ *
+ * @package Piwik_Login
+ */
class Piwik_Login extends Piwik_Plugin
{
public function __construct()
Modified: trunk/plugins/Logout/Controller.php
===================================================================
--- trunk/plugins/Logout/Controller.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Logout/Controller.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,6 +9,11 @@
* @package Piwik_Logout
*/
+
+/**
+ *
+ * @package Piwik_Logout
+ */
class Piwik_Logout_Controller extends Piwik_Controller
{
function index()
Modified: trunk/plugins/Openads/Controller.php
===================================================================
--- trunk/plugins/Openads/Controller.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Openads/Controller.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,6 +9,11 @@
* @package Piwik_Openads
*/
+
+/**
+ *
+ * @package Piwik_Openads
+ */
class Piwik_Openads_Controller extends Piwik_Installation_Controller
{
function __construct()
Modified: trunk/plugins/Openads.php
===================================================================
--- trunk/plugins/Openads.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Openads.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -8,7 +8,11 @@
*
* @package Piwik_Openads
*/
-
+
+/**
+ *
+ * @package Piwik_Openads
+ */
class Piwik_Openads extends Piwik_Plugin
{
public function __construct()
Modified: trunk/plugins/Provider/API.php
===================================================================
--- trunk/plugins/Provider/API.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Provider/API.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -13,7 +13,12 @@
require_once "DataFiles/Browsers.php";
require_once "DataFiles/OS.php";
require_once "Actions.php";
-
+
+
+/**
+ *
+ * @package Piwik_Provider
+ */
class Piwik_Provider_API extends Piwik_Apiable
{
static private $instance = null;
Modified: trunk/plugins/Provider.php
===================================================================
--- trunk/plugins/Provider.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Provider.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -8,7 +8,11 @@
*
* @package Piwik_Provider
*/
-
+
+/**
+ *
+ * @package Piwik_Provider
+ */
class Piwik_Provider extends Piwik_Plugin
{
public function __construct()
Modified: trunk/plugins/Referers/API.php
===================================================================
--- trunk/plugins/Referers/API.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Referers/API.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -13,7 +13,12 @@
require_once "DataFiles/Browsers.php";
require_once "DataFiles/OS.php";
require_once "Actions.php";
-
+
+
+/**
+ *
+ * @package Piwik_Referers
+ */
class Piwik_Referers_API extends Piwik_Apiable
{
static private $instance = null;
Modified: trunk/plugins/Referers.php
===================================================================
--- trunk/plugins/Referers.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/Referers.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -8,7 +8,11 @@
*
* @package Piwik_Referers
*/
-
+
+/**
+ *
+ * @package Piwik_Referers
+ */
class Piwik_Referers extends Piwik_Plugin
{
public function __construct()
Modified: trunk/plugins/SitesManager/API.php
===================================================================
--- trunk/plugins/SitesManager/API.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/SitesManager/API.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -11,7 +11,7 @@
/**
*
- * @package Piwik
+ * @package Piwik_SitesManager
*/
class Piwik_SitesManager_API extends Piwik_Apiable
{
Modified: trunk/plugins/SitesManager/Controller.php
===================================================================
--- trunk/plugins/SitesManager/Controller.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/SitesManager/Controller.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,6 +9,11 @@
* @package Piwik_SitesManager
*/
+
+/**
+ *
+ * @package Piwik_SitesManager
+ */
class Piwik_SitesManager_Controller extends Piwik_Controller
{
function index()
Modified: trunk/plugins/SitesManager.php
===================================================================
--- trunk/plugins/SitesManager.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/SitesManager.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -8,7 +8,11 @@
*
* @package Piwik_SitesManager
*/
-
+
+/**
+ *
+ * @package Piwik_SitesManager
+ */
class Piwik_SitesManager extends Piwik_Plugin
{
public function __construct()
Modified: trunk/plugins/UserCountry/API.php
===================================================================
--- trunk/plugins/UserCountry/API.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/UserCountry/API.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -11,7 +11,12 @@
require_once "DataFiles/Countries.php";
-
+
+
+/**
+ *
+ * @package Piwik_UserCountry
+ */
class Piwik_UserCountry_API extends Piwik_Apiable
{
static private $instance = null;
Modified: trunk/plugins/UserCountry.php
===================================================================
--- trunk/plugins/UserCountry.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/UserCountry.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -8,7 +8,11 @@
*
* @package Piwik_UserCountry
*/
-
+
+/**
+ *
+ * @package Piwik_UserCountry
+ */
class Piwik_UserCountry extends Piwik_Plugin
{
public function __construct()
Modified: trunk/plugins/UserSettings.php
===================================================================
--- trunk/plugins/UserSettings.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/UserSettings.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -8,7 +8,11 @@
*
* @package Piwik_UserSettings
*/
-
+
+/**
+ *
+ * @package Piwik_UserSettings
+ */
class Piwik_UserSettings extends Piwik_Plugin
{
// source: http://en.wikipedia.org/wiki/List_of_web_browsers
Modified: trunk/plugins/UsersManager/API.php
===================================================================
--- trunk/plugins/UsersManager/API.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/UsersManager/API.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -8,13 +8,13 @@
*
* @package Piwik_UsersManager
*/
+
+Zend_Loader::loadClass("Piwik_Access");
-/**
- *
- * @package Piwik
+/**
+ *
+ * @package Piwik_UsersManager
*/
-Zend_Loader::loadClass("Piwik_Access");
-
class Piwik_UsersManager_API extends Piwik_Apiable
{
static private $instance = null;
Modified: trunk/plugins/UsersManager/Controller.php
===================================================================
--- trunk/plugins/UsersManager/Controller.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/UsersManager/Controller.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,6 +9,11 @@
* @package Piwik_UsersManager
*/
+
+/**
+ *
+ * @package Piwik_UsersManager
+ */
class Piwik_UsersManager_Controller extends Piwik_Controller
{
function index()
Modified: trunk/plugins/UsersManager.php
===================================================================
--- trunk/plugins/UsersManager.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/UsersManager.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -8,7 +8,11 @@
*
* @package Piwik_UsersManager
*/
-
+
+/**
+ *
+ * @package Piwik_UsersManager
+ */
class Piwik_UsersManager extends Piwik_Plugin
{
public function __construct()
Modified: trunk/plugins/VisitFrequency/API.php
===================================================================
--- trunk/plugins/VisitFrequency/API.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/VisitFrequency/API.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,6 +9,11 @@
* @package Piwik_VisitFrequency
*/
+
+/**
+ *
+ * @package Piwik_VisitFrequency
+ */
class Piwik_VisitFrequency_API extends Piwik_Apiable
{
static private $instance = null;
Modified: trunk/plugins/VisitFrequency.php
===================================================================
--- trunk/plugins/VisitFrequency.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/VisitFrequency.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -8,7 +8,11 @@
*
* @package Piwik_VisitFrequency
*/
-
+
+/**
+ *
+ * @package Piwik_VisitFrequency
+ */
class Piwik_VisitFrequency extends Piwik_Plugin
{
public function __construct()
Modified: trunk/plugins/VisitTime/API.php
===================================================================
--- trunk/plugins/VisitTime/API.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/VisitTime/API.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -8,7 +8,12 @@
*
* @package Piwik_VisitTime
*/
-
+
+
+/**
+ *
+ * @package Piwik_VisitTime
+ */
class Piwik_VisitTime_API extends Piwik_Apiable
{
static private $instance = null;
Modified: trunk/plugins/VisitTime.php
===================================================================
--- trunk/plugins/VisitTime.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/VisitTime.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,7 +9,11 @@
*
* @package Piwik_VisitTime
*/
-
+
+/**
+ *
+ * @package Piwik_VisitTime
+ */
class Piwik_VisitTime extends Piwik_Plugin
{
public function __construct()
Modified: trunk/plugins/VisitorInterest/API.php
===================================================================
--- trunk/plugins/VisitorInterest/API.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/VisitorInterest/API.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,8 +9,11 @@
* @package Piwik_VisitorInterest
*/
-
-
+
+/**
+ *
+ * @package Piwik_VisitorInterest
+ */
class Piwik_VisitorInterest_API extends Piwik_Apiable
{
static private $instance = null;
Modified: trunk/plugins/VisitorInterest.php
===================================================================
--- trunk/plugins/VisitorInterest.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/VisitorInterest.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -8,7 +8,11 @@
*
* @package Piwik_VisitorInterest
*/
-
+
+/**
+ *
+ * @package Piwik_VisitorInterest
+ */
class Piwik_VisitorInterest extends Piwik_Plugin
{
Modified: trunk/plugins/VisitsSummary/API.php
===================================================================
--- trunk/plugins/VisitsSummary/API.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/VisitsSummary/API.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -9,6 +9,11 @@
* @package Piwik_VisitsSummary
*/
+
+/**
+ *
+ * @package Piwik_VisitsSummary
+ */
class Piwik_VisitsSummary_API extends Piwik_Apiable
{
static private $instance = null;
Modified: trunk/plugins/VisitsSummary.php
===================================================================
--- trunk/plugins/VisitsSummary.php 2008-01-14 05:26:43 UTC (rev 168)
+++ trunk/plugins/VisitsSummary.php 2008-01-14 05:41:15 UTC (rev 169)
@@ -8,7 +8,11 @@
*
* @package Piwik_VisitsSummary
*/
-
+
+/**
+ *
+ * @package Piwik_VisitsSummary
+ */
class Piwik_VisitsSummary extends Piwik_Plugin
{
public function __construct()
More information about the Piwik-svn
mailing list