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:
-rw-r--r--core/API/Proxy.php10
-rw-r--r--core/FrontController.php12
-rw-r--r--core/Menu/MenuAdmin.php2
-rw-r--r--core/Menu/MenuMain.php2
-rw-r--r--core/Menu/MenuTop.php2
-rw-r--r--core/Plugin/ViewDataTable.php2
-rw-r--r--core/Tracker.php4
-rw-r--r--core/Tracker/Action.php2
-rw-r--r--core/WidgetsList.php2
9 files changed, 19 insertions, 19 deletions
diff --git a/core/API/Proxy.php b/core/API/Proxy.php
index b0ab2998d2..82a9a9379f 100644
--- a/core/API/Proxy.php
+++ b/core/API/Proxy.php
@@ -178,11 +178,11 @@ class Proxy extends Singleton
Piwik::postEvent('API.Request.dispatch', array(&$finalParameters, $pluginName, $methodName));
/**
- * This event exists for convenience and is triggered directly after the [API.Request.dispatch](#)
+ * This event exists for convenience and is triggered directly after the [API.Request.dispatch](#apirequestdispatch)
* event is triggered.
*
* It can be used to modify the input that is passed to a single API method. This is also
- * possible with the [API.Request.dispatch](#) event, however that event requires event handlers
+ * possible with the [API.Request.dispatch](#apirequestdispatch) event, however that event requires event handlers
* check if the plugin name and method name are correct before modifying the parameters.
*
* **Example**
@@ -208,15 +208,15 @@ class Proxy extends Singleton
/**
* This event exists for convenience and is triggered immediately before the
- * [API.Request.dispatch.end](#) event.
+ * [API.Request.dispatch.end](#apirequestdispatchend) event.
*
* It can be used to modify the output of a single API method. This is also possible with
- * the [API.Request.dispatch.end](#) event, however that event requires event handlers
+ * the [API.Request.dispatch.end](#apirequestdispatchend) event, however that event requires event handlers
* check if the plugin name and method name are correct before modifying the output.
*
* @param mixed &$returnedValue The value returned from the API method. This will not be
* a rendered string, but an actual object. For example, it
- * could be a [DataTable](#).
+ * could be a {@link Piwik\DataTable DataTable}.
* @param array $extraInfo An array holding information regarding the API request. Will
* contain the following data:
*
diff --git a/core/FrontController.php b/core/FrontController.php
index 06060f4b76..40a54f420a 100644
--- a/core/FrontController.php
+++ b/core/FrontController.php
@@ -102,11 +102,11 @@ class FrontController extends Singleton
list($controller, $action) = $this->makeController($module, $action);
/**
- * This event exists for convenience and is triggered directly after the [Request.dispatch](#)
+ * This event exists for convenience and is triggered directly after the [Request.dispatch](#requestdispatch)
* event is triggered.
*
- * It can be used to do the same things as the [Request.dispatch](#) event, but for one controller
- * action only. Using this event will result in a little less code than [Request.dispatch](#).
+ * It can be used to do the same things as the [Request.dispatch](#requestdispatch) event, but for one controller
+ * action only. Using this event will result in a little less code than [Request.dispatch](#requestdispatch).
*
* @param array &$parameters The arguments passed to the controller action.
*/
@@ -119,9 +119,9 @@ class FrontController extends Singleton
* This event exists for convenience and is triggered immediately before the
* [Request.dispatch.end](#) event is triggered.
*
- * It can be used to do the same things as the [Request.dispatch.end](#) event, but for one
+ * It can be used to do the same things as the [Request.dispatch.end](#requestdispatchend) event, but for one
* controller action only. Using this event will result in a little less code than
- * [Request.dispatch.end](#).
+ * [Request.dispatch.end](#requestdispatchend).
*
* @param mixed &$result The result of the controller action.
* @param array $parameters The arguments passed to the controller action.
@@ -364,7 +364,7 @@ class FrontController extends Singleton
/**
* Triggered before the user is authenticated. You can use it to create your own
- * authentication object which implements the [Piwik\Auth](#) interface and overrides
+ * authentication object which implements the {@link Piwik\Auth} interface and overrides
* the default authentication logic.
*/
Piwik::postEvent('Request.initAuthenticationObject');
diff --git a/core/Menu/MenuAdmin.php b/core/Menu/MenuAdmin.php
index fb6eb139c1..5338c786a3 100644
--- a/core/Menu/MenuAdmin.php
+++ b/core/Menu/MenuAdmin.php
@@ -64,7 +64,7 @@ class MenuAdmin extends MenuAbstract
* Triggered when collecting all available admin menu items. Subscribe to this event if you want
* to add one or more items to the Piwik admin menu.
*
- * Menu items should be added via the [Menu::add](#) method.
+ * Menu items should be added via the {@link Menu::add()} method.
*
* **Example**
*
diff --git a/core/Menu/MenuMain.php b/core/Menu/MenuMain.php
index f1c35989d2..e3f5c3ba3b 100644
--- a/core/Menu/MenuMain.php
+++ b/core/Menu/MenuMain.php
@@ -70,7 +70,7 @@ class MenuMain extends MenuAbstract
* Triggered when collecting all available reporting menu items. Subscribe to this event if you
* want to add one or more items to the Piwik reporting menu.
*
- * Menu items should be added via the [Menu::add](#) method.
+ * Menu items should be added via the {@link add()} method.
*
* **Example**
*
diff --git a/core/Menu/MenuTop.php b/core/Menu/MenuTop.php
index e51517658f..7333f79924 100644
--- a/core/Menu/MenuTop.php
+++ b/core/Menu/MenuTop.php
@@ -95,7 +95,7 @@ class MenuTop extends MenuAbstract
* page, next to the login/logout links. Subscribe to this event if you want to add one or more items
* to the top menu.
*
- * Menu items should be added via the [MenuTop::addEntry](#addEntry) method.
+ * Menu items should be added via the {@link addEntry()} method.
*
* **Example**
*
diff --git a/core/Plugin/ViewDataTable.php b/core/Plugin/ViewDataTable.php
index 123c91f070..511babdd7d 100644
--- a/core/Plugin/ViewDataTable.php
+++ b/core/Plugin/ViewDataTable.php
@@ -123,7 +123,7 @@ abstract class ViewDataTable implements ViewInterface
$this->requestConfig->apiMethodToRequestDataTable = $apiMethodToRequestDataTable;
/**
- * Triggered during [ViewDataTable](#) construction. Subscribers should customize
+ * Triggered during {@link ViewDataTable} construction. Subscribers should customize
* the view based on the report that it is displaying.
*
* Plugins that define their own reports must subscribe to this event in order to
diff --git a/core/Tracker.php b/core/Tracker.php
index 121cbab35b..0e8b746b0f 100644
--- a/core/Tracker.php
+++ b/core/Tracker.php
@@ -588,9 +588,9 @@ class Tracker
$visit = null;
/**
- * Triggered before a new `Piwik\Tracker\Visit` object is created. Subscribers to this
+ * Triggered before a new `{@link Piwik\Tracker\Visit}` object is created. Subscribers to this
* event can force the use of a custom visit object that extends from
- * [Piwik\Tracker\VisitInterface](#).
+ * {@link Piwik\Tracker\VisitInterface}.
*
* @param \Piwik\Tracker\VisitInterface &$visit Initialized to null, but can be set to
* a created Visit object. If it isn't
diff --git a/core/Tracker/Action.php b/core/Tracker/Action.php
index 08739ebadf..10c8514f05 100644
--- a/core/Tracker/Action.php
+++ b/core/Tracker/Action.php
@@ -316,7 +316,7 @@ abstract class Action
* Triggered after successfully logging an action for a visit.
*
*
- * @param Action $trackerAction The Action tracker instance.
+ * @param Action $tracker Action The Action tracker instance.
* @param array $info An array describing the current visit action. Includes the
* following information:
* - **idSite**: The ID of the site that we are tracking.
diff --git a/core/WidgetsList.php b/core/WidgetsList.php
index 91f753b389..659ddd02ce 100644
--- a/core/WidgetsList.php
+++ b/core/WidgetsList.php
@@ -77,7 +77,7 @@ class WidgetsList
* Triggered once when the widget list is first requested. Collects all available widgets.
*
* Subscribe to this event to make your plugin's reports or other controller actions available
- * as dashboard widgets. Event handlers should call the WidgetsList::add method for each
+ * as dashboard widgets. Event handlers should call the {@link WidgetsList::add()} method for each
* new dashboard widget.
*
* **Example**