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:
authorJulienMoumne <julien@piwik.org>2011-02-11 23:17:47 +0300
committerJulienMoumne <julien@piwik.org>2011-02-11 23:17:47 +0300
commit146a2303f2cb6cdf87f45a32313ebd021fa41eeb (patch)
treee35ba5f12b53e53a6e274b04e51a3a78c78c566a /plugins/ExamplePlugin
parent8b8f8d855a73c95943e5c40f4ac3b21e6d78c35f (diff)
documentation links update
git-svn-id: http://dev.piwik.org/svn/trunk@3865 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/ExamplePlugin')
-rw-r--r--plugins/ExamplePlugin/ExamplePlugin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ExamplePlugin/ExamplePlugin.php b/plugins/ExamplePlugin/ExamplePlugin.php
index 6f6ab997ed..7bc5ca3c30 100644
--- a/plugins/ExamplePlugin/ExamplePlugin.php
+++ b/plugins/ExamplePlugin/ExamplePlugin.php
@@ -124,7 +124,7 @@ class Piwik_ExamplePlugin_Controller extends Piwik_Controller
/**
* This method displays a text containing an help about "How to build plugins for Piwik".
- * This help is then used on http://dev.piwik.org/trac/wiki/Plugins/GlobalFunctions
+ * This help is then used on http://piwik.org/docs/plugins/functions
*
*/
function index()
@@ -174,7 +174,7 @@ class Piwik_ExamplePlugin_Controller extends Piwik_Controller
$out .= '<code>Piwik_SitesManager_API::getInstance()->getSitesWithAdminAccess()</code> = <b><pre>' .var_export(Piwik_SitesManager_API::getInstance()->getSitesWithAdminAccess(),true) . '</pre></b><br />';
$out .= '<h2>Example API Users information</h2>';
- $out .= 'View the list of API methods you can call on <a href="http://dev.piwik.org/trac/wiki/API/Reference#Methods">API reference</a><br />';
+ $out .= 'View the list of API methods you can call on <a href="http://piwik.org/docs/analytics-api/reference">API reference</a><br />';
$out .= 'For example you can try <code>Piwik_UsersManager_API::getInstance()->getUsersSitesFromAccess("view");</code> or <code>Piwik_UsersManager_API::getInstance()->deleteUser("userToDelete");</code><br />';
$out .= '<h2>Javascript in Piwik</h2>';