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:
authormattab <matthieu.aubry@gmail.com>2013-07-15 12:22:37 +0400
committermattab <matthieu.aubry@gmail.com>2013-07-15 12:22:37 +0400
commitf4b96569eb6520d373f18c9fa06e86af837ac103 (patch)
treec3feb4073454b6590d847da9bd8b8e4ab6855d4b /plugins/ExamplePlugin
parent81c138e63645bfc047a94941ca2e0932b2b91db8 (diff)
Refs #4054
* Removing PluginDescription from core en.php files, for all Example* plugins (to showcase the JSON file in the Example plugin)
Diffstat (limited to 'plugins/ExamplePlugin')
-rw-r--r--plugins/ExamplePlugin/lang/en.php1
-rw-r--r--plugins/ExamplePlugin/plugin.piwik.json15
2 files changed, 15 insertions, 1 deletions
diff --git a/plugins/ExamplePlugin/lang/en.php b/plugins/ExamplePlugin/lang/en.php
index 253072064e..9be43dddea 100644
--- a/plugins/ExamplePlugin/lang/en.php
+++ b/plugins/ExamplePlugin/lang/en.php
@@ -10,7 +10,6 @@
*/
$translations = array(
- 'ExamplePlugin_PluginDescription' => 'Example Plugin: This plugin shows how to create a very simple plugin, that exports two widgets in the Dashboard.',
'ExamplePlugin_exampleWidgets' => 'Example Widgets',
'ExamplePlugin_exampleWidget' => 'Example Widget',
'ExamplePlugin_photostreamMatt' => 'Matt\'s Photos',
diff --git a/plugins/ExamplePlugin/plugin.piwik.json b/plugins/ExamplePlugin/plugin.piwik.json
new file mode 100644
index 0000000000..31825c0f23
--- /dev/null
+++ b/plugins/ExamplePlugin/plugin.piwik.json
@@ -0,0 +1,15 @@
+{
+ "name": "ExamplePlugin",
+ "description": "Example Plugin: This plugin shows how to create a simple plugin that creates three new widgets that can be added in the Dashboard.",
+ "version": "1.0",
+ "keywords": ["example", "widget"],
+ "homepage": "http://piwik.org",
+ "license": "GPL-3.0+",
+ "authors": [
+ {
+ "name": "Piwik",
+ "email": "hello@piwik.org",
+ "homepage": "http://piwik.org"
+ }
+ ]
+} \ No newline at end of file