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:
authorThomas Steur <thomas.steur@gmail.com>2013-12-03 23:16:26 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-12-03 23:16:26 +0400
commit0e756f1c7b6650c0df45c06bcebe0abe841f745e (patch)
tree1147922936b7414aae4efe4fd9dc451b3fa2f1a3
parent9281714affdf498333912858747de2c3cdf85f8d (diff)
refs #4244 fix some links
-rw-r--r--core/DataTable/Filter/Truncate.php2
-rw-r--r--core/Plugin/Controller.php2
-rw-r--r--core/Settings/Setting.php4
-rw-r--r--core/WidgetsList.php2
4 files changed, 5 insertions, 5 deletions
diff --git a/core/DataTable/Filter/Truncate.php b/core/DataTable/Filter/Truncate.php
index 8374bebbb7..ecfff67b76 100644
--- a/core/DataTable/Filter/Truncate.php
+++ b/core/DataTable/Filter/Truncate.php
@@ -19,7 +19,7 @@ use Piwik\Piwik;
* Truncates a DataTable by merging all rows after a certain index into a new summary
* row, unless the count of rows is less than the index.
*
- * The {@link ReplaceSummaryRow} filter will be queued after the table is truncated.
+ * The {@link ReplaceSummaryRowLabel} filter will be queued after the table is truncated.
*
* ### Examples
*
diff --git a/core/Plugin/Controller.php b/core/Plugin/Controller.php
index 0eb46d14fa..da5c8a8def 100644
--- a/core/Plugin/Controller.php
+++ b/core/Plugin/Controller.php
@@ -41,7 +41,7 @@ use Piwik\API\Proxy;
* Base class of all plugin Controllers.
*
* Plugins that wish to add display HTML should create a Controller that either
- * extends from this class or from {@link Piwik\Plugin\ControllerAdmin}. Every public method in
+ * extends from this class or from {@link ControllerAdmin}. Every public method in
* the controller will be exposed as a controller action.
*
* Learn more about Piwik's MVC system [here](#).
diff --git a/core/Settings/Setting.php b/core/Settings/Setting.php
index 2e0f775f6f..ba58abbc34 100644
--- a/core/Settings/Setting.php
+++ b/core/Settings/Setting.php
@@ -58,7 +58,7 @@ abstract class Setting
* The setting value will be validated if this field is set. If the value is not one of the
* available values, an error will be triggered.
*
- * _Note: If a custom validator is supplied (see {@link validate()}), the setting value will
+ * _Note: If a custom validator is supplied (see {@link $validate}), the setting value will
* not be validated._
*
* @var null|array
@@ -114,7 +114,7 @@ abstract class Setting
* A closure that transforms the setting value. If supplied, this closure will be executed after
* the setting has been validated.
*
- * _Note: If a transform is supplied, the setting's {@link type()} has no effect. This means the
+ * _Note: If a transform is supplied, the setting's {@link $type} has no effect. This means the
* transformation function will be responsible for casting the setting value to the appropriate
* data type._
*
diff --git a/core/WidgetsList.php b/core/WidgetsList.php
index bde8ba170e..26b4086d83 100644
--- a/core/WidgetsList.php
+++ b/core/WidgetsList.php
@@ -13,7 +13,7 @@ namespace Piwik;
/**
* Manages the global list of reports that can be displayed as dashboard widgets.
*
- * Reports are added as dashboard widgets through the {@link addWidgets}
+ * Reports are added as dashboard widgets through the {@hook WidgetsList.addWidgets}
* event. Plugins should call {@link add()} in event observers for this event.
*
* @package PluginsFunctions