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
diff options
context:
space:
mode:
authorrobocoder <anthon.pang@gmail.com>2009-08-23 19:55:35 +0400
committerrobocoder <anthon.pang@gmail.com>2009-08-23 19:55:35 +0400
commit727673c289bc566e0bdba1a94606f47ea4c0756c (patch)
tree92618174d667ae985098f90b66759971b135d07c
parenta74e576153975164edf1380dc48952675011e671 (diff)
more php cross referencing
git-svn-id: http://dev.piwik.org/svn/trunk@1434 59fd770c-687e-43c8-a1e3-f5a4ff64c105
-rw-r--r--core/Auth.php3
-rw-r--r--core/Form.php2
-rw-r--r--core/Mail.php3
-rw-r--r--core/PluginsManager.php2
-rw-r--r--core/Smarty.php2
5 files changed, 10 insertions, 2 deletions
diff --git a/core/Auth.php b/core/Auth.php
index 763d65215b..fa3b9d9e03 100644
--- a/core/Auth.php
+++ b/core/Auth.php
@@ -33,9 +33,10 @@ interface Piwik_Auth {
/**
* Authentication result
*
- * @see Zend_Auth_Result
* @package Piwik
* @subpackage Piwik_Auth
+ * @see Zend_Auth_Result, libs/Zend/Auth/Result.php
+ * @link http://framework.zend.com/manual/en/zend.auth.html
*/
class Piwik_Auth_Result extends Zend_Auth_Result
{
diff --git a/core/Form.php b/core/Form.php
index e8bda818e1..6c00803938 100644
--- a/core/Form.php
+++ b/core/Form.php
@@ -16,6 +16,8 @@
* For an example, @see Piwik_Login_Form
*
* @package Piwik
+ * @see HTML_QuickForm, libs/HTML/QuickForm.php
+ * @link http://pear.php.net/package/HTML_QuickForm/
*/
abstract class Piwik_Form extends HTML_QuickForm
{
diff --git a/core/Mail.php b/core/Mail.php
index e9740edd16..8daf4d2be7 100644
--- a/core/Mail.php
+++ b/core/Mail.php
@@ -12,9 +12,10 @@
/**
* Class for sending mails, for more information see:
- * @link http://framework.zend.com/manual/en/zend.mail.html
*
* @package Piwik
+ * @see Zend_Mail, libs/Zend/Mail.php
+ * @link http://framework.zend.com/manual/en/zend.mail.html
*/
class Piwik_Mail extends Zend_Mail
{
diff --git a/core/PluginsManager.php b/core/PluginsManager.php
index 23d4a4e102..9795515a4c 100644
--- a/core/PluginsManager.php
+++ b/core/PluginsManager.php
@@ -515,6 +515,8 @@ function Piwik_AddAction( $hookName, $function )
/**
* @package Piwik
+ * @see Event_Notification, libs/Event/Notification.php
+ * @link http://pear.php.net/package/Event_Dispatcher/docs/latest/Event_Dispatcher/Event_Notification.html
*/
class Piwik_Event_Notification extends Event_Notification
{
diff --git a/core/Smarty.php b/core/Smarty.php
index beaa0ec4a3..a5b8165583 100644
--- a/core/Smarty.php
+++ b/core/Smarty.php
@@ -24,6 +24,8 @@ require_once PIWIK_INCLUDE_PATH . '/libs/Smarty/Smarty.class.php';
*
* @package Piwik
* @subpackage Piwik_Smarty
+ * @see Smarty, libs/Smarty/Smarty.class.php
+ * @link http://smarty.net/manual/en/
*/
class Piwik_Smarty extends Smarty
{