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:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-08-04 03:53:22 +0400
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-08-04 03:53:22 +0400
commit1dfc7ae2d07f99daccd432762c232b9329ea4285 (patch)
treee60f0a9ebcbc8ab2c9f45031284bec17cc532523 /plugins/ExamplePlugin
parent3f93985c07dcfa88d905b468692ac32b684cd558 (diff)
- renamed modules/ directory in core/
- cleaning admin UI - adding widgetize module - cleaning template architecture
Diffstat (limited to 'plugins/ExamplePlugin')
-rw-r--r--plugins/ExamplePlugin/ExamplePlugin.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/ExamplePlugin/ExamplePlugin.php b/plugins/ExamplePlugin/ExamplePlugin.php
index d3c7bd1094..f09dc9f815 100644
--- a/plugins/ExamplePlugin/ExamplePlugin.php
+++ b/plugins/ExamplePlugin/ExamplePlugin.php
@@ -14,8 +14,7 @@ class Piwik_ExamplePlugin extends Piwik_Plugin
public function getInformation()
{
return array(
- // name must be the className prefix!
- 'name' => 'ExamplePlugin',
+ 'name' => 'Example Plugin',
'description' => 'Example Plugin: This plugin shows how to create a very simple plugin, that exports two widgets in the Dashboard.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
@@ -127,7 +126,7 @@ class Piwik_ExamplePlugin_Controller extends Piwik_Controller
$out .= '<h2>Smarty plugins</h2>';
$out .= 'There are some builtin plugins for Smarty especially developped for Piwik. <br>
- You can find them on the <a href="http://dev.piwik.org/trac/browser/trunk/modules/SmartyPlugins">SVN at /trunk/modules/SmartyPlugins</a>. <br>
+ You can find them on the <a href="http://dev.piwik.org/trac/browser/trunk/core/SmartyPlugins">SVN at /trunk/core/SmartyPlugins</a>. <br>
More documentation to come about smarty plugins.<br/>';
echo $out;