From: <var...@us...> - 2009-05-29 10:58:06
|
Revision: 6822 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6822&view=rev Author: vargenau Date: 2009-05-29 10:58:02 +0000 (Fri, 29 May 2009) Log Message: ----------- Add getDescription function Modified Paths: -------------- trunk/lib/plugin/PasswordReset.php trunk/lib/plugin/RecentChanges.php trunk/lib/plugin/RecentComments.php trunk/lib/plugin/RecentEdits.php trunk/lib/plugin/RecentReferrers.php trunk/lib/plugin/RelatedChanges.php trunk/lib/plugin/UserPreferences.php trunk/lib/plugin/WatchPage.php trunk/lib/plugin/WikiForm.php Modified: trunk/lib/plugin/PasswordReset.php =================================================================== --- trunk/lib/plugin/PasswordReset.php 2009-05-29 10:12:15 UTC (rev 6821) +++ trunk/lib/plugin/PasswordReset.php 2009-05-29 10:58:02 UTC (rev 6822) @@ -28,7 +28,7 @@ * => "No email stored for user %s. * You need to ask an Administrator to reset this password." * Problem: How to contact Admin? Present a link to ADMIN_USER - + * * If no email exists but is not verified, * => "Warning: This users email address is unverified!" * @@ -42,6 +42,10 @@ return _("PasswordReset"); } + function getDescription () { + return _("Allow admin to reset any users password, allow user to request his password by e-mail."); + } + function getVersion() { return preg_replace("/[Revision: $]/", '', "\$Revision$"); Modified: trunk/lib/plugin/RecentChanges.php =================================================================== --- trunk/lib/plugin/RecentChanges.php 2009-05-29 10:12:15 UTC (rev 6821) +++ trunk/lib/plugin/RecentChanges.php 2009-05-29 10:58:02 UTC (rev 6822) @@ -23,8 +23,6 @@ include_once("lib/WikiPlugin.php"); -/** - */ class _RecentChanges_Formatter { var $_absurls = false; @@ -1144,6 +1142,10 @@ return _("RecentChanges"); } + function getDescription () { + return _("List all recent changes in this wiki."); + } + function getVersion() { return preg_replace("/[Revision: $]/", '', "\$Revision$"); Modified: trunk/lib/plugin/RecentComments.php =================================================================== --- trunk/lib/plugin/RecentComments.php 2009-05-29 10:12:15 UTC (rev 6821) +++ trunk/lib/plugin/RecentComments.php 2009-05-29 10:58:02 UTC (rev 6822) @@ -16,10 +16,16 @@ function getName () { return _("RecentComments"); } + + function getDescription () { + return _("List basepages with recently added comments."); + } + function getVersion() { return preg_replace("/[Revision: $]/", '', "\$Revision$"); } + function getDefaultArguments() { //php-4.0.4pl1 breaks at the parent:: line even if the // code doesn't reach this line Modified: trunk/lib/plugin/RecentEdits.php =================================================================== --- trunk/lib/plugin/RecentEdits.php 2009-05-29 10:12:15 UTC (rev 6821) +++ trunk/lib/plugin/RecentEdits.php 2009-05-29 10:58:02 UTC (rev 6822) @@ -10,6 +10,10 @@ return _("RecentEdits"); } + function getDescription () { + return _("List all recent edits in this wiki."); + } + function getVersion() { return preg_replace("/[Revision: $]/", '', "\$Revision$"); @@ -48,4 +52,4 @@ // c-hanging-comment-ender-p: nil // indent-tabs-mode: nil // End: -?> \ No newline at end of file +?> Modified: trunk/lib/plugin/RecentReferrers.php =================================================================== --- trunk/lib/plugin/RecentReferrers.php 2009-05-29 10:12:15 UTC (rev 6821) +++ trunk/lib/plugin/RecentReferrers.php 2009-05-29 10:58:02 UTC (rev 6822) @@ -14,6 +14,10 @@ return _("RecentReferrers"); } + function getDescription () { + return _("Analyse access log."); + } + function getVersion() { return preg_replace("/[Revision: $]/", '', "\$Revision$"); Modified: trunk/lib/plugin/RelatedChanges.php =================================================================== --- trunk/lib/plugin/RelatedChanges.php 2009-05-29 10:12:15 UTC (rev 6821) +++ trunk/lib/plugin/RelatedChanges.php 2009-05-29 10:58:02 UTC (rev 6822) @@ -27,6 +27,10 @@ return _("RecentEdits"); } + function getDescription () { + return _("List of changes on all pages which are linked to from this page."); + } + function getVersion() { return preg_replace("/[Revision: $]/", '', "\$Revision$"); Modified: trunk/lib/plugin/UserPreferences.php =================================================================== --- trunk/lib/plugin/UserPreferences.php 2009-05-29 10:12:15 UTC (rev 6821) +++ trunk/lib/plugin/UserPreferences.php 2009-05-29 10:58:02 UTC (rev 6822) @@ -38,6 +38,10 @@ return _("UserPreferences"); } + function getDescription () { + return _("Allow any user to adjust his own preferences."); + } + function getVersion() { return preg_replace("/[Revision: $]/", '', "\$Revision$"); Modified: trunk/lib/plugin/WatchPage.php =================================================================== --- trunk/lib/plugin/WatchPage.php 2009-05-29 10:12:15 UTC (rev 6821) +++ trunk/lib/plugin/WatchPage.php 2009-05-29 10:58:02 UTC (rev 6822) @@ -36,6 +36,10 @@ return _("WatchPage"); } + function getDescription () { + return _("Manage notifications emails per page."); + } + function getVersion() { return preg_replace("/[Revision: $]/", '', "\$Revision$"); Modified: trunk/lib/plugin/WikiForm.php =================================================================== --- trunk/lib/plugin/WikiForm.php 2009-05-29 10:12:15 UTC (rev 6821) +++ trunk/lib/plugin/WikiForm.php 2009-05-29 10:58:02 UTC (rev 6822) @@ -34,6 +34,10 @@ return _("WikiForm"); } + function getDescription () { + return _("Provide generic WikiForm input buttons"); + } + function getVersion() { return preg_replace("/[Revision: $]/", '', "\$Revision$"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |