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:
authorvipsoft <vipsoft@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-12-08 19:21:47 +0300
committervipsoft <vipsoft@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-12-08 19:21:47 +0300
commit41bd412cdb9af796066394237f7aa5e65828a8b0 (patch)
tree856e89231b9019a5f33678037782d2991f704b24 /plugins
parent1129e150089dd68542daaac334208243b4dc8d7a (diff)
fixes #1056 - core plugins should display release version
Diffstat (limited to 'plugins')
-rw-r--r--plugins/API/API.php2
-rw-r--r--plugins/Actions/Actions.php2
-rw-r--r--plugins/CoreAdminHome/CoreAdminHome.php2
-rw-r--r--plugins/CoreHome/CoreHome.php2
-rw-r--r--plugins/CorePluginsAdmin/CorePluginsAdmin.php2
-rw-r--r--plugins/CoreUpdater/CoreUpdater.php2
-rw-r--r--plugins/DBStats/DBStats.php2
-rw-r--r--plugins/Dashboard/Dashboard.php2
-rw-r--r--plugins/Feedback/Feedback.php2
-rw-r--r--plugins/Goals/Goals.php2
-rw-r--r--plugins/Installation/Installation.php2
-rw-r--r--plugins/LanguagesManager/LanguagesManager.php2
-rw-r--r--plugins/Live/Live.php4
-rw-r--r--plugins/Login/Login.php2
-rw-r--r--plugins/Provider/Provider.php2
-rw-r--r--plugins/Referers/Referers.php2
-rw-r--r--plugins/SitesManager/SitesManager.php2
-rw-r--r--plugins/UserCountry/UserCountry.php2
-rw-r--r--plugins/UserSettings/UserSettings.php2
-rw-r--r--plugins/UsersManager/UsersManager.php2
-rw-r--r--plugins/VisitFrequency/VisitFrequency.php2
-rw-r--r--plugins/VisitTime/VisitTime.php2
-rw-r--r--plugins/VisitorInterest/VisitorInterest.php2
-rw-r--r--plugins/VisitsSummary/VisitsSummary.php2
-rw-r--r--plugins/Widgetize/Widgetize.php2
25 files changed, 26 insertions, 26 deletions
diff --git a/plugins/API/API.php b/plugins/API/API.php
index c645a91aea..a5da4cd901 100644
--- a/plugins/API/API.php
+++ b/plugins/API/API.php
@@ -23,7 +23,7 @@ class Piwik_API extends Piwik_Plugin
'description' => 'All the data in Piwik is available through simple APIs. This plugin is the web service entry point, that you can call to get your Web Analytics data in xml, json, php, csv, etc. Discover the <a href="http://dev.piwik.org/trac/wiki/API/Reference">Piwik APIs</a>.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
}
}
diff --git a/plugins/Actions/Actions.php b/plugins/Actions/Actions.php
index 199726675a..b277c5c95a 100644
--- a/plugins/Actions/Actions.php
+++ b/plugins/Actions/Actions.php
@@ -35,7 +35,7 @@ class Piwik_Actions extends Piwik_Plugin
'description' => 'Reports about the page views, the outlinks and downloads. Outlinks and Downloads tracking is automatic!',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
return $info;
}
diff --git a/plugins/CoreAdminHome/CoreAdminHome.php b/plugins/CoreAdminHome/CoreAdminHome.php
index c395ae00c2..565c3ea7ee 100644
--- a/plugins/CoreAdminHome/CoreAdminHome.php
+++ b/plugins/CoreAdminHome/CoreAdminHome.php
@@ -23,7 +23,7 @@ class Piwik_CoreAdminHome extends Piwik_Plugin
'description' => 'Administration area of Piwik.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
}
diff --git a/plugins/CoreHome/CoreHome.php b/plugins/CoreHome/CoreHome.php
index 8fd24df88e..68514db7c9 100644
--- a/plugins/CoreHome/CoreHome.php
+++ b/plugins/CoreHome/CoreHome.php
@@ -23,7 +23,7 @@ class Piwik_CoreHome extends Piwik_Plugin
'description' => 'Web Analytics Reports Structure.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
}
}
diff --git a/plugins/CorePluginsAdmin/CorePluginsAdmin.php b/plugins/CorePluginsAdmin/CorePluginsAdmin.php
index dc634819a7..095d16282c 100644
--- a/plugins/CorePluginsAdmin/CorePluginsAdmin.php
+++ b/plugins/CorePluginsAdmin/CorePluginsAdmin.php
@@ -23,7 +23,7 @@ class Piwik_CorePluginsAdmin extends Piwik_Plugin
'description' => 'Plugins Administration Interface.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
}
diff --git a/plugins/CoreUpdater/CoreUpdater.php b/plugins/CoreUpdater/CoreUpdater.php
index 22dc0319e8..5cb12848ae 100644
--- a/plugins/CoreUpdater/CoreUpdater.php
+++ b/plugins/CoreUpdater/CoreUpdater.php
@@ -23,7 +23,7 @@ class Piwik_CoreUpdater extends Piwik_Plugin
'description' => 'Piwik updating mechanism',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
}
diff --git a/plugins/DBStats/DBStats.php b/plugins/DBStats/DBStats.php
index e318cdc7e9..a6cbec89db 100644
--- a/plugins/DBStats/DBStats.php
+++ b/plugins/DBStats/DBStats.php
@@ -23,7 +23,7 @@ class Piwik_DBStats extends Piwik_Plugin
'description' => 'This plugin reports the MySQL database usage by Piwik tables.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
}
diff --git a/plugins/Dashboard/Dashboard.php b/plugins/Dashboard/Dashboard.php
index bfa72af4bc..7d9f32d768 100644
--- a/plugins/Dashboard/Dashboard.php
+++ b/plugins/Dashboard/Dashboard.php
@@ -23,7 +23,7 @@ class Piwik_Dashboard extends Piwik_Plugin
'description' => 'Your Web Analytics Dashboard. You can customize Your Dashboard: add new widgets, change the order of your widgets. Each user can access his own custom Dashboard.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
}
diff --git a/plugins/Feedback/Feedback.php b/plugins/Feedback/Feedback.php
index bf89afda5c..d0d8868083 100644
--- a/plugins/Feedback/Feedback.php
+++ b/plugins/Feedback/Feedback.php
@@ -23,7 +23,7 @@ class Piwik_Feedback extends Piwik_Plugin
'description' => 'Send your Feedback to the Piwik Team in one click. Share your ideas and suggestions with us!',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
}
diff --git a/plugins/Goals/Goals.php b/plugins/Goals/Goals.php
index 7e36b3a4d3..d9b2a3aae9 100644
--- a/plugins/Goals/Goals.php
+++ b/plugins/Goals/Goals.php
@@ -30,7 +30,7 @@ class Piwik_Goals extends Piwik_Plugin
'description' => 'Create Goals and see reports about your goal conversions: evolution over time, revenue per visit, conversions per referer, per keyword, etc.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
'TrackerPlugin' => true, // this plugin must be loaded during the stats logging
);
diff --git a/plugins/Installation/Installation.php b/plugins/Installation/Installation.php
index 0b17c974f5..3ac5577e4e 100644
--- a/plugins/Installation/Installation.php
+++ b/plugins/Installation/Installation.php
@@ -25,7 +25,7 @@ class Piwik_Installation extends Piwik_Plugin
'description' => 'Installation process of Piwik. The Installation is usually done once only. If the configuration file config/config.inc.php is deleted, the installation will start again.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
return $info;
diff --git a/plugins/LanguagesManager/LanguagesManager.php b/plugins/LanguagesManager/LanguagesManager.php
index 34112a1caf..dc1fd47167 100644
--- a/plugins/LanguagesManager/LanguagesManager.php
+++ b/plugins/LanguagesManager/LanguagesManager.php
@@ -24,7 +24,7 @@ class Piwik_LanguagesManager extends Piwik_Plugin
'description' => 'This plugin will display a list of the available languages for the Piwik interface. The language selected will be saved in the preferences for each user.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
}
diff --git a/plugins/Live/Live.php b/plugins/Live/Live.php
index fd3dac4cca..dd28211b04 100644
--- a/plugins/Live/Live.php
+++ b/plugins/Live/Live.php
@@ -37,7 +37,7 @@ class Piwik_Live extends Piwik_Plugin
'description' => 'Live Visitors!',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.5',
+ 'version' => Piwik_Version::VERSION,
);
}
@@ -64,4 +64,4 @@ class Piwik_Live extends Piwik_Plugin
Piwik_AddWidget('Live!', 'Live Visitors!', 'Live', 'widget');
}
-} \ No newline at end of file
+}
diff --git a/plugins/Login/Login.php b/plugins/Login/Login.php
index 3866cd7ba7..462da32cb4 100644
--- a/plugins/Login/Login.php
+++ b/plugins/Login/Login.php
@@ -23,7 +23,7 @@ class Piwik_Login extends Piwik_Plugin
'description' => 'Login Authentication plugin, reading the credentials from the config/config.inc.php file for the Super User, and from the Database for the other users. Can be easily replaced to introduce a new Authentication mechanism (OpenID, htaccess, custom Auth, etc.).',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
return $info;
}
diff --git a/plugins/Provider/Provider.php b/plugins/Provider/Provider.php
index a547846fc8..1bb473173b 100644
--- a/plugins/Provider/Provider.php
+++ b/plugins/Provider/Provider.php
@@ -23,7 +23,7 @@ class Piwik_Provider extends Piwik_Plugin
'description' => 'Reports the Provider of the visitors.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
'TrackerPlugin' => true, // this plugin must be loaded during the stats logging
);
diff --git a/plugins/Referers/Referers.php b/plugins/Referers/Referers.php
index 3e305ba3d2..12dbf6e413 100644
--- a/plugins/Referers/Referers.php
+++ b/plugins/Referers/Referers.php
@@ -27,7 +27,7 @@ class Piwik_Referers extends Piwik_Plugin
'description' => 'Reports the Referers data: Search Engines, Keywords, Websites, Campaign Tracking, Direct Entry. ',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
return $info;
diff --git a/plugins/SitesManager/SitesManager.php b/plugins/SitesManager/SitesManager.php
index b2542e966c..7ab1ef0245 100644
--- a/plugins/SitesManager/SitesManager.php
+++ b/plugins/SitesManager/SitesManager.php
@@ -23,7 +23,7 @@ class Piwik_SitesManager extends Piwik_Plugin
'description' => 'Websites Management in Piwik: Add a new Website, Edit an existing one, Show the Javascript code to include on your pages. All the actions are also available through the API.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
return $info;
}
diff --git a/plugins/UserCountry/UserCountry.php b/plugins/UserCountry/UserCountry.php
index 5c502d872d..1bfc8a4ace 100644
--- a/plugins/UserCountry/UserCountry.php
+++ b/plugins/UserCountry/UserCountry.php
@@ -23,7 +23,7 @@ class Piwik_UserCountry extends Piwik_Plugin
'description' => 'Reports the Country of the visitors.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
return $info;
}
diff --git a/plugins/UserSettings/UserSettings.php b/plugins/UserSettings/UserSettings.php
index 66243c7ce6..ace596cb6f 100644
--- a/plugins/UserSettings/UserSettings.php
+++ b/plugins/UserSettings/UserSettings.php
@@ -23,7 +23,7 @@ class Piwik_UserSettings extends Piwik_Plugin
'description' => 'Reports various User Settings: Browser, Browser Family, Operating System, Plugins, Resolution, Global Settings.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
return $info;
diff --git a/plugins/UsersManager/UsersManager.php b/plugins/UsersManager/UsersManager.php
index 10fe88a003..32b2f17054 100644
--- a/plugins/UsersManager/UsersManager.php
+++ b/plugins/UsersManager/UsersManager.php
@@ -23,7 +23,7 @@ class Piwik_UsersManager extends Piwik_Plugin
'description' => 'Users Management in Piwik: add a new User, edit an existing one, update the permissions. All the actions are also available through the API.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
return $info;
diff --git a/plugins/VisitFrequency/VisitFrequency.php b/plugins/VisitFrequency/VisitFrequency.php
index ccd83d0662..5821408175 100644
--- a/plugins/VisitFrequency/VisitFrequency.php
+++ b/plugins/VisitFrequency/VisitFrequency.php
@@ -23,7 +23,7 @@ class Piwik_VisitFrequency extends Piwik_Plugin
'description' => 'Reports various statistics about the Returning Visitor versus the First time visitor.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
return $info;
}
diff --git a/plugins/VisitTime/VisitTime.php b/plugins/VisitTime/VisitTime.php
index d565a3fb91..d093274d21 100644
--- a/plugins/VisitTime/VisitTime.php
+++ b/plugins/VisitTime/VisitTime.php
@@ -23,7 +23,7 @@ class Piwik_VisitTime extends Piwik_Plugin
'description' => 'Reports the Local and Server time. Server time information can be useful to schedule a maintenance on the Website.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
return $info;
}
diff --git a/plugins/VisitorInterest/VisitorInterest.php b/plugins/VisitorInterest/VisitorInterest.php
index 2379972407..ec35d31115 100644
--- a/plugins/VisitorInterest/VisitorInterest.php
+++ b/plugins/VisitorInterest/VisitorInterest.php
@@ -23,7 +23,7 @@ class Piwik_VisitorInterest extends Piwik_Plugin
'description' => 'Reports about the Visitor Interest: number of pages viewed, time spent on the Website.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
return $info;
diff --git a/plugins/VisitsSummary/VisitsSummary.php b/plugins/VisitsSummary/VisitsSummary.php
index 6ae9228c1c..f10cc5ecd9 100644
--- a/plugins/VisitsSummary/VisitsSummary.php
+++ b/plugins/VisitsSummary/VisitsSummary.php
@@ -23,7 +23,7 @@ class Piwik_VisitsSummary extends Piwik_Plugin
'description' => 'Reports the general Analytics numbers: visits, unique visitors, number of actions, Bounce Rate, etc.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
return $info;
}
diff --git a/plugins/Widgetize/Widgetize.php b/plugins/Widgetize/Widgetize.php
index 9e60096a01..90546515b9 100644
--- a/plugins/Widgetize/Widgetize.php
+++ b/plugins/Widgetize/Widgetize.php
@@ -23,7 +23,7 @@ class Piwik_Widgetize extends Piwik_Plugin
'description' => 'The plugin makes it very easy to export any Piwik Widget in your Blog, Website or on Igoogle and Netvibes!',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
+ 'version' => Piwik_Version::VERSION,
);
}
}