From: <var...@us...> - 2014-10-01 15:26:09
|
Revision: 9148 http://sourceforge.net/p/phpwiki/code/9148 Author: vargenau Date: 2014-10-01 15:25:56 +0000 (Wed, 01 Oct 2014) Log Message: ----------- Massive PHP Doc update Modified Paths: -------------- trunk/lib/plugin/AddComment.php trunk/lib/plugin/AllPages.php trunk/lib/plugin/AllUsers.php trunk/lib/plugin/AnalyseAccessLogSql.php trunk/lib/plugin/AppendText.php trunk/lib/plugin/AsciiMath.php trunk/lib/plugin/AsciiSVG.php trunk/lib/plugin/AtomFeed.php trunk/lib/plugin/AuthorHistory.php trunk/lib/plugin/BackLinks.php trunk/lib/plugin/BlogArchives.php trunk/lib/plugin/BlogJournal.php trunk/lib/plugin/BoxRight.php trunk/lib/plugin/Calendar.php trunk/lib/plugin/CalendarList.php trunk/lib/plugin/CategoryPage.php trunk/lib/plugin/Chart.php trunk/lib/plugin/Comment.php trunk/lib/plugin/CreateBib.php trunk/lib/plugin/CreatePage.php trunk/lib/plugin/CreateToc.php trunk/lib/plugin/CurrentTime.php trunk/lib/plugin/DebugAuthInfo.php trunk/lib/plugin/DebugBackendInfo.php trunk/lib/plugin/DebugGroupInfo.php trunk/lib/plugin/DebugRetransform.php trunk/lib/plugin/Diff.php trunk/lib/plugin/DynamicIncludePage.php trunk/lib/plugin/EditMetaData.php trunk/lib/plugin/ExternalSearch.php trunk/lib/plugin/FacebookLike.php trunk/lib/plugin/FileInfo.php trunk/lib/plugin/FoafViewer.php trunk/lib/plugin/FuzzyPages.php trunk/lib/plugin/GoTo.php trunk/lib/plugin/GoogleMaps.php trunk/lib/plugin/GooglePlugin.php trunk/lib/plugin/HelloWorld.php trunk/lib/plugin/HtmlConverter.php trunk/lib/plugin/IncludePage.php trunk/lib/plugin/IncludePages.php trunk/lib/plugin/IncludeSiteMap.php trunk/lib/plugin/IncludeTree.php trunk/lib/plugin/InterWikiSearch.php trunk/lib/plugin/JabberPresence.php trunk/lib/plugin/LdapSearch.php trunk/lib/plugin/LikePages.php trunk/lib/plugin/LinkDatabase.php trunk/lib/plugin/LinkSearch.php trunk/lib/plugin/ListPages.php trunk/lib/plugin/ListRelations.php trunk/lib/plugin/ListSubpages.php trunk/lib/plugin/MediawikiTable.php trunk/lib/plugin/ModeratedPage.php trunk/lib/plugin/MostPopular.php trunk/lib/plugin/NewPagesPerUser.php trunk/lib/plugin/NoCache.php trunk/lib/plugin/OldStyleTable.php trunk/lib/plugin/OrphanedPages.php trunk/lib/plugin/PageGroup.php trunk/lib/plugin/PageHistory.php trunk/lib/plugin/PageInfo.php trunk/lib/plugin/PageTrail.php trunk/lib/plugin/PasswordReset.php trunk/lib/plugin/PhotoAlbum.php trunk/lib/plugin/PhpHighlight.php trunk/lib/plugin/PhpWeather.php trunk/lib/plugin/PluginManager.php trunk/lib/plugin/PopUp.php trunk/lib/plugin/PopularNearby.php trunk/lib/plugin/PopularTags.php trunk/lib/plugin/PreferenceApp.php trunk/lib/plugin/PreferencesInfo.php trunk/lib/plugin/PrevNext.php trunk/lib/plugin/Processing.php trunk/lib/plugin/RandomPage.php trunk/lib/plugin/RateIt.php trunk/lib/plugin/RawHtml.php trunk/lib/plugin/RecentChanges.php trunk/lib/plugin/RecentComments.php trunk/lib/plugin/RecentReferrers.php trunk/lib/plugin/RedirectTo.php trunk/lib/plugin/RichTable.php trunk/lib/plugin/RssFeed.php trunk/lib/plugin/SearchHighlight.php trunk/lib/plugin/SemanticRelations.php trunk/lib/plugin/SemanticSearch.php trunk/lib/plugin/SemanticSearchAdvanced.php trunk/lib/plugin/SiteMap.php trunk/lib/plugin/SpellCheck.php trunk/lib/plugin/SqlResult.php trunk/lib/plugin/SyncWiki.php trunk/lib/plugin/SyntaxHighlighter.php trunk/lib/plugin/SystemInfo.php trunk/lib/plugin/TeX2png.php trunk/lib/plugin/Template.php trunk/lib/plugin/TitleSearch.php trunk/lib/plugin/Transclude.php trunk/lib/plugin/TranslateText.php trunk/lib/plugin/UnfoldSubpages.php trunk/lib/plugin/UpLoad.php trunk/lib/plugin/UriResolver.php trunk/lib/plugin/UserPreferences.php trunk/lib/plugin/UserRatings.php trunk/lib/plugin/Video.php trunk/lib/plugin/WantedPages.php trunk/lib/plugin/WantedPagesOld.php trunk/lib/plugin/WatchPage.php trunk/lib/plugin/WhoIsOnline.php trunk/lib/plugin/WikiAdminChown.php trunk/lib/plugin/WikiAdminDeleteAcl.php trunk/lib/plugin/WikiAdminPurge.php trunk/lib/plugin/WikiAdminRemove.php trunk/lib/plugin/WikiAdminRename.php trunk/lib/plugin/WikiAdminSearchReplace.php trunk/lib/plugin/WikiAdminSelect.php trunk/lib/plugin/WikiAdminSetAcl.php trunk/lib/plugin/WikiAdminSetAclSimple.php trunk/lib/plugin/WikiAdminSetExternal.php trunk/lib/plugin/WikiAdminUtils.php trunk/lib/plugin/WikiBlog.php trunk/lib/plugin/WikiForm.php trunk/lib/plugin/WikiFormRich.php trunk/lib/plugin/WikiForum.php trunk/lib/plugin/WikiPoll.php trunk/lib/plugin/WikiTranslation.php trunk/lib/plugin/WikicreoleTable.php trunk/lib/plugin/YouTube.php trunk/lib/plugin/text2png.php Modified: trunk/lib/plugin/AddComment.php =================================================================== --- trunk/lib/plugin/AddComment.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/AddComment.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -65,6 +65,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/AllPages.php =================================================================== --- trunk/lib/plugin/AllPages.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/AllPages.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -53,6 +53,13 @@ // exclude arg allows multiple pagenames exclude=HomePage,RecentChanges // sortby: [+|-] pagename|mtime|hits + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/AllUsers.php =================================================================== --- trunk/lib/plugin/AllUsers.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/AllUsers.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -57,6 +57,13 @@ // // sortby: [+|-] pagename|mtime|hits + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/AnalyseAccessLogSql.php =================================================================== --- trunk/lib/plugin/AnalyseAccessLogSql.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/AnalyseAccessLogSql.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -263,6 +263,13 @@ return _("Show summary information from the access log table."); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { // flag that the output may not be cached - i.e. it is dynamic Modified: trunk/lib/plugin/AppendText.php =================================================================== --- trunk/lib/plugin/AppendText.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/AppendText.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -56,6 +56,13 @@ return $oldtext . "\n" . $addtext; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { Modified: trunk/lib/plugin/AsciiMath.php =================================================================== --- trunk/lib/plugin/AsciiMath.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/AsciiMath.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -56,6 +56,13 @@ $this->source = $argstr; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/AsciiSVG.php =================================================================== --- trunk/lib/plugin/AsciiSVG.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/AsciiSVG.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -47,6 +47,13 @@ $this->source = $argstr; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { global $WikiTheme; Modified: trunk/lib/plugin/AtomFeed.php =================================================================== --- trunk/lib/plugin/AtomFeed.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/AtomFeed.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -44,6 +44,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { extract($this->getArgs($argstr, $request)); Modified: trunk/lib/plugin/AuthorHistory.php =================================================================== --- trunk/lib/plugin/AuthorHistory.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/AuthorHistory.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -81,6 +81,13 @@ // info=mtime,hits,summary,version,author,locked,minor // exclude arg allows multiple pagenames exclude=HomePage,RecentChanges + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $this->_args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/BackLinks.php =================================================================== --- trunk/lib/plugin/BackLinks.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/BackLinks.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -48,6 +48,13 @@ // exclude arg allows multiple pagenames exclude=HomePage,RecentChanges // NEW: info=count : number of links // page=foo,bar : backlinks to both pages + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/BlogArchives.php =================================================================== --- trunk/lib/plugin/BlogArchives.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/BlogArchives.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -53,6 +53,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { if (is_array($argstr)) { // can do with array also. Modified: trunk/lib/plugin/BlogJournal.php =================================================================== --- trunk/lib/plugin/BlogJournal.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/BlogJournal.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -49,6 +49,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { if (is_array($argstr)) { // can do with array also. Modified: trunk/lib/plugin/BoxRight.php =================================================================== --- trunk/lib/plugin/BoxRight.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/BoxRight.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -44,6 +44,13 @@ return true; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { if (!$basepage) { Modified: trunk/lib/plugin/Calendar.php =================================================================== --- trunk/lib/plugin/Calendar.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/Calendar.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -165,6 +165,13 @@ return $td; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $this->args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/CalendarList.php =================================================================== --- trunk/lib/plugin/CalendarList.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/CalendarList.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -142,6 +142,13 @@ return $a; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $this->args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/CategoryPage.php =================================================================== --- trunk/lib/plugin/CategoryPage.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/CategoryPage.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -56,6 +56,13 @@ 'showbuds' => false); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/Chart.php =================================================================== --- trunk/lib/plugin/Chart.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/Chart.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -69,6 +69,13 @@ $this->source = $argstr; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { Modified: trunk/lib/plugin/Comment.php =================================================================== --- trunk/lib/plugin/Comment.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/Comment.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -49,6 +49,13 @@ return array(); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { return HTML::raw(''); Modified: trunk/lib/plugin/CreateBib.php =================================================================== --- trunk/lib/plugin/CreateBib.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/CreateBib.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -96,6 +96,13 @@ } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { extract($this->getArgs($argstr, $request)); Modified: trunk/lib/plugin/CreatePage.php =================================================================== --- trunk/lib/plugin/CreatePage.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/CreatePage.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -56,6 +56,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { extract($this->getArgs($argstr, $request)); Modified: trunk/lib/plugin/CreateToc.php =================================================================== --- trunk/lib/plugin/CreateToc.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/CreateToc.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -377,6 +377,13 @@ return $headers; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { global $WikiTheme; Modified: trunk/lib/plugin/CurrentTime.php =================================================================== --- trunk/lib/plugin/CurrentTime.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/CurrentTime.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -69,6 +69,13 @@ return; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { extract($this->getArgs($argstr, $request)); Modified: trunk/lib/plugin/DebugAuthInfo.php =================================================================== --- trunk/lib/plugin/DebugAuthInfo.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/DebugAuthInfo.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -41,6 +41,13 @@ return array('userid' => ''); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/DebugBackendInfo.php =================================================================== --- trunk/lib/plugin/DebugBackendInfo.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/DebugBackendInfo.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -37,6 +37,13 @@ 'notallversions' => 0); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/DebugGroupInfo.php =================================================================== --- trunk/lib/plugin/DebugGroupInfo.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/DebugGroupInfo.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -36,6 +36,13 @@ return array(); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/DebugRetransform.php =================================================================== --- trunk/lib/plugin/DebugRetransform.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/DebugRetransform.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -36,6 +36,13 @@ return array('page' => '[pagename]'); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/Diff.php =================================================================== --- trunk/lib/plugin/Diff.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/Diff.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -73,6 +73,13 @@ return $row; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { extract($this->getArgs($argstr, $request)); Modified: trunk/lib/plugin/DynamicIncludePage.php =================================================================== --- trunk/lib/plugin/DynamicIncludePage.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/DynamicIncludePage.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -45,6 +45,13 @@ )); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { global $WikiTheme; Modified: trunk/lib/plugin/EditMetaData.php =================================================================== --- trunk/lib/plugin/EditMetaData.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/EditMetaData.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -54,6 +54,13 @@ return array('page' => '[pagename]'); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $this->_args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/ExternalSearch.php =================================================================== --- trunk/lib/plugin/ExternalSearch.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/ExternalSearch.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -71,6 +71,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/FacebookLike.php =================================================================== --- trunk/lib/plugin/FacebookLike.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/FacebookLike.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -48,6 +48,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/FileInfo.php =================================================================== --- trunk/lib/plugin/FileInfo.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/FileInfo.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -52,6 +52,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/FoafViewer.php =================================================================== --- trunk/lib/plugin/FoafViewer.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/FoafViewer.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -79,6 +79,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { Modified: trunk/lib/plugin/FuzzyPages.php =================================================================== --- trunk/lib/plugin/FuzzyPages.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/FuzzyPages.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -148,6 +148,13 @@ return $table; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/GoTo.php =================================================================== --- trunk/lib/plugin/GoTo.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/GoTo.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -43,6 +43,13 @@ return array('size' => 32); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $request->setArg('action', false); Modified: trunk/lib/plugin/GoogleMaps.php =================================================================== --- trunk/lib/plugin/GoogleMaps.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/GoogleMaps.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -78,6 +78,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { Modified: trunk/lib/plugin/GooglePlugin.php =================================================================== --- trunk/lib/plugin/GooglePlugin.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/GooglePlugin.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -56,6 +56,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/HelloWorld.php =================================================================== --- trunk/lib/plugin/HelloWorld.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/HelloWorld.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -52,6 +52,13 @@ 'name' => "World"); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { extract($this->getArgs($argstr, $request)); Modified: trunk/lib/plugin/HtmlConverter.php =================================================================== --- trunk/lib/plugin/HtmlConverter.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/HtmlConverter.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -42,6 +42,13 @@ return array(); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $form = HTML::form(array('action' => $request->getPostURL(), Modified: trunk/lib/plugin/IncludePage.php =================================================================== --- trunk/lib/plugin/IncludePage.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/IncludePage.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -79,6 +79,13 @@ return; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/IncludePages.php =================================================================== --- trunk/lib/plugin/IncludePages.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/IncludePages.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -44,6 +44,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/IncludeSiteMap.php =================================================================== --- trunk/lib/plugin/IncludeSiteMap.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/IncludeSiteMap.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -69,6 +69,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { return WikiPlugin_SiteMap::run($dbi, $argstr, $request, $basepage); Modified: trunk/lib/plugin/IncludeTree.php =================================================================== --- trunk/lib/plugin/IncludeTree.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/IncludeTree.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -58,6 +58,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { return WikiPlugin_SiteMap::run($dbi, $argstr, $request, $basepage); Modified: trunk/lib/plugin/InterWikiSearch.php =================================================================== --- trunk/lib/plugin/InterWikiSearch.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/InterWikiSearch.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -39,6 +39,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/JabberPresence.php =================================================================== --- trunk/lib/plugin/JabberPresence.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/JabberPresence.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -52,6 +52,13 @@ 'iconset' => "gabber"); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { extract($this->getArgs($argstr, $request)); Modified: trunk/lib/plugin/LdapSearch.php =================================================================== --- trunk/lib/plugin/LdapSearch.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/LdapSearch.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -69,6 +69,13 @@ // I ought to require the ldap extension, but fail sanely, if I cant get it. // - however at the moment this seems to work as is + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { if (!function_exists('ldap_connect')) { Modified: trunk/lib/plugin/LikePages.php =================================================================== --- trunk/lib/plugin/LikePages.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/LikePages.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -48,6 +48,13 @@ // info=mtime,hits,summary,version,author,locked,minor // exclude arg allows multiple pagenames exclude=HomePage,RecentChanges + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/LinkDatabase.php =================================================================== --- trunk/lib/plugin/LinkDatabase.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/LinkDatabase.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -72,6 +72,13 @@ $this->run($dbi, WikiPluginCached::glueArgs($argarray), $request, $basepage); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { global $WikiTheme; Modified: trunk/lib/plugin/LinkSearch.php =================================================================== --- trunk/lib/plugin/LinkSearch.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/LinkSearch.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -123,6 +123,13 @@ return $form; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/ListPages.php =================================================================== --- trunk/lib/plugin/ListPages.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/ListPages.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -58,6 +58,13 @@ // numbacklinks : number of backlinks (links to the given page) // numpagelinks : number of forward links (links at the given page) + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/ListRelations.php =================================================================== --- trunk/lib/plugin/ListRelations.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/ListRelations.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -45,6 +45,13 @@ )); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/ListSubpages.php =================================================================== --- trunk/lib/plugin/ListSubpages.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/ListSubpages.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -53,6 +53,13 @@ // info=mtime,hits,summary,version,author,locked,minor,count // exclude arg allows multiple pagenames exclude=HomePage,RecentChanges + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/MediawikiTable.php =================================================================== --- trunk/lib/plugin/MediawikiTable.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/MediawikiTable.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -72,6 +72,13 @@ return $backlinks; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { global $backlinks; Modified: trunk/lib/plugin/ModeratedPage.php =================================================================== --- trunk/lib/plugin/ModeratedPage.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/ModeratedPage.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -54,6 +54,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/MostPopular.php =================================================================== --- trunk/lib/plugin/MostPopular.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/MostPopular.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -51,6 +51,13 @@ // exclude arg allows multiple pagenames exclude=HomePage,RecentChanges // sortby: only pagename or hits. mtime not! + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/NewPagesPerUser.php =================================================================== --- trunk/lib/plugin/NewPagesPerUser.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/NewPagesPerUser.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -54,6 +54,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { global $WikiTheme; Modified: trunk/lib/plugin/NoCache.php =================================================================== --- trunk/lib/plugin/NoCache.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/NoCache.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -46,6 +46,13 @@ return array('nocache' => 1); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/OldStyleTable.php =================================================================== --- trunk/lib/plugin/OldStyleTable.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/OldStyleTable.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -76,6 +76,13 @@ return $backlinks; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { global $backlinks; Modified: trunk/lib/plugin/OrphanedPages.php =================================================================== --- trunk/lib/plugin/OrphanedPages.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/OrphanedPages.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -51,6 +51,13 @@ // info=mtime,hits,summary,version,author,locked,minor,markup or all // exclude arg allows multiple pagenames exclude=HomePage,RecentChanges + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/PageGroup.php =================================================================== --- trunk/lib/plugin/PageGroup.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/PageGroup.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -87,6 +87,13 @@ return array(sprintf(_("<%s: no such section>"), $page . " " . $section)); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { Modified: trunk/lib/plugin/PageHistory.php =================================================================== --- trunk/lib/plugin/PageHistory.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/PageHistory.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -329,6 +329,13 @@ return $fmt->format($changes); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/PageInfo.php =================================================================== --- trunk/lib/plugin/PageInfo.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/PageInfo.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -40,6 +40,13 @@ 'version' => '[version]'); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/PageTrail.php =================================================================== --- trunk/lib/plugin/PageTrail.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/PageTrail.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -54,6 +54,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { extract($this->getArgs($argstr, $request)); Modified: trunk/lib/plugin/PasswordReset.php =================================================================== --- trunk/lib/plugin/PasswordReset.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/PasswordReset.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -113,6 +113,13 @@ $footer); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/PhotoAlbum.php =================================================================== --- trunk/lib/plugin/PhotoAlbum.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/PhotoAlbum.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -154,6 +154,13 @@ // descriptions (instead of filenames) for image alt-tags + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { Modified: trunk/lib/plugin/PhpHighlight.php =================================================================== --- trunk/lib/plugin/PhpHighlight.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/PhpHighlight.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -49,6 +49,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { Modified: trunk/lib/plugin/PhpWeather.php =================================================================== --- trunk/lib/plugin/PhpWeather.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/PhpWeather.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -73,6 +73,13 @@ 'units' => 'both_metric'); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { // When 'phpweather/phpweather.php' is not installed then Modified: trunk/lib/plugin/PluginManager.php =================================================================== --- trunk/lib/plugin/PluginManager.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/PluginManager.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -38,6 +38,13 @@ return array('info' => 'args'); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { extract($this->getArgs($argstr, $request)); Modified: trunk/lib/plugin/PopUp.php =================================================================== --- trunk/lib/plugin/PopUp.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/PopUp.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -70,6 +70,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { extract($this->getArgs($argstr, $request)); Modified: trunk/lib/plugin/PopularNearby.php =================================================================== --- trunk/lib/plugin/PopularNearby.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/PopularNearby.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -54,6 +54,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/PopularTags.php =================================================================== --- trunk/lib/plugin/PopularTags.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/PopularTags.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -50,6 +50,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/PreferenceApp.php =================================================================== --- trunk/lib/plugin/PreferenceApp.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/PreferenceApp.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -69,6 +69,13 @@ // info=mtime,hits,summary,version,author,locked,minor // exclude arg allows multiple pagenames exclude=HomePage,RecentChanges + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { Modified: trunk/lib/plugin/PreferencesInfo.php =================================================================== --- trunk/lib/plugin/PreferencesInfo.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/PreferencesInfo.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -38,6 +38,13 @@ 'userid' => '[userid]'); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/PrevNext.php =================================================================== --- trunk/lib/plugin/PrevNext.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/PrevNext.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -51,6 +51,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { Modified: trunk/lib/plugin/Processing.php =================================================================== --- trunk/lib/plugin/Processing.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/Processing.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -46,6 +46,13 @@ $this->source = $argstr; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { global $WikiTheme; Modified: trunk/lib/plugin/RandomPage.php =================================================================== --- trunk/lib/plugin/RandomPage.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/RandomPage.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -47,6 +47,13 @@ 'info' => '')); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { Modified: trunk/lib/plugin/RateIt.php =================================================================== --- trunk/lib/plugin/RateIt.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/RateIt.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -190,6 +190,13 @@ } // Only for signed users done in template only yet. + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { global $WikiTheme; Modified: trunk/lib/plugin/RawHtml.php =================================================================== --- trunk/lib/plugin/RawHtml.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/RawHtml.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -67,6 +67,13 @@ return true; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { if (!defined('ENABLE_RAW_HTML') || !ENABLE_RAW_HTML) { Modified: trunk/lib/plugin/RecentChanges.php =================================================================== --- trunk/lib/plugin/RecentChanges.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/RecentChanges.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -1300,6 +1300,12 @@ ); } + /** + * @param string $argstr + * @param WikiRequest $request + * @param array $defaults + * @return array + */ function getArgs($argstr, $request = false, $defaults = array()) { if (empty($defaults)) { @@ -1412,6 +1418,13 @@ return $fmt->format($changes); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/RecentComments.php =================================================================== --- trunk/lib/plugin/RecentComments.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/RecentComments.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -53,6 +53,13 @@ return $fmt->format($changes); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/RecentReferrers.php =================================================================== --- trunk/lib/plugin/RecentReferrers.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/RecentReferrers.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -45,6 +45,13 @@ )); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { if (!ACCESS_LOG) { Modified: trunk/lib/plugin/RedirectTo.php =================================================================== --- trunk/lib/plugin/RedirectTo.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/RedirectTo.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -51,6 +51,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/RichTable.php =================================================================== --- trunk/lib/plugin/RichTable.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/RichTable.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -50,6 +50,13 @@ return $backlinks; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { global $backlinks; Modified: trunk/lib/plugin/RssFeed.php =================================================================== --- trunk/lib/plugin/RssFeed.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/RssFeed.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -44,6 +44,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { extract($this->getArgs($argstr, $request)); Modified: trunk/lib/plugin/SearchHighlight.php =================================================================== --- trunk/lib/plugin/SearchHighlight.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/SearchHighlight.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -51,6 +51,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/SemanticRelations.php =================================================================== --- trunk/lib/plugin/SemanticRelations.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/SemanticRelations.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -48,6 +48,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { global $WikiTheme; Modified: trunk/lib/plugin/SemanticSearch.php =================================================================== --- trunk/lib/plugin/SemanticSearch.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/SemanticSearch.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -266,6 +266,13 @@ return new TextSearchQuery($string, $case_exact, $regex); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $this->_supported_operators = array(':=', '<', '<=', '>', '>=', '!=', '==', '=~'); Modified: trunk/lib/plugin/SemanticSearchAdvanced.php =================================================================== --- trunk/lib/plugin/SemanticSearchAdvanced.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/SemanticSearchAdvanced.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -124,6 +124,13 @@ return $form; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $this->_supported_operators = array(':=', '<', '<=', '>', '>=', '!=', '==', '=~'); Modified: trunk/lib/plugin/SiteMap.php =================================================================== --- trunk/lib/plugin/SiteMap.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/SiteMap.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -133,6 +133,13 @@ return $pagearr; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { include_once 'lib/BlockParser.php'; Modified: trunk/lib/plugin/SpellCheck.php =================================================================== --- trunk/lib/plugin/SpellCheck.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/SpellCheck.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -112,6 +112,13 @@ ; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { extract($this->getArgs($argstr, $request)); Modified: trunk/lib/plugin/SqlResult.php =================================================================== --- trunk/lib/plugin/SqlResult.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/SqlResult.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -93,6 +93,13 @@ $this->_sql = str_replace("\n", " ", $argstr); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { global $DBParams; Modified: trunk/lib/plugin/SyncWiki.php =================================================================== --- trunk/lib/plugin/SyncWiki.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/SyncWiki.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -60,6 +60,13 @@ ); } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); Modified: trunk/lib/plugin/SyntaxHighlighter.php =================================================================== --- trunk/lib/plugin/SyntaxHighlighter.php 2014-10-01 14:18:44 UTC (rev 9147) +++ trunk/lib/plugin/SyntaxHighlighter.php 2014-10-01 15:25:56 UTC (rev 9148) @@ -49,6 +49,13 @@ $this->source = $argstr; } + /** + * @param WikiDB $dbi + * @param string $argstr + * @param WikiRequest $request + * @param string $basepage + * @return bool + */ function run($dbi, $argstr, &$request, $basepage) { extract($this->getArgs($argstr, $request)); Modified: trunk/lib/plugin/SystemInfo.php ======================================================... [truncated message content] |