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:
Diffstat (limited to 'plugins/ExampleAPI/ExampleAPI.php')
-rw-r--r--plugins/ExampleAPI/ExampleAPI.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/plugins/ExampleAPI/ExampleAPI.php b/plugins/ExampleAPI/ExampleAPI.php
index aaddcfe89b..271b58c9ab 100644
--- a/plugins/ExampleAPI/ExampleAPI.php
+++ b/plugins/ExampleAPI/ExampleAPI.php
@@ -19,15 +19,18 @@ class Piwik_ExampleAPI extends Piwik_Plugin
{
/**
* Return information about this plugin.
+ *
+ * @see Piwik_Plugin
+ *
* @return array
*/
public function getInformation()
{
return array(
- 'name' => 'Example API',
- 'description' => 'Example Plugin: How to create an API for your plugin, to export your data in multiple formats without any special coding? Visit the <a href="index.php?module=API&action=listAllAPI#ExampleAPI">ExampleAPI example methods</a>.',
+ 'description' => Piwik_Translate('ExampleAPI_PluginDescription'),
+ 'homepage' => 'index.php?module=API&action=listAllAPI#ExampleAPI',
'author' => 'Piwik',
- 'homepage' => 'http://piwik.org/',
+ 'author_homepage' => 'http://piwik.org/',
'version' => '0.1',
);
}