From: <var...@us...> - 2014-11-09 18:15:51
|
Revision: 9298 http://sourceforge.net/p/phpwiki/code/9298 Author: vargenau Date: 2014-11-09 18:15:48 +0000 (Sun, 09 Nov 2014) Log Message: ----------- Add class variables Modified Paths: -------------- trunk/lib/plugin/AnalyseAccessLogSql.php trunk/lib/plugin/AsciiMath.php trunk/lib/plugin/AsciiSVG.php trunk/lib/plugin/AuthorHistory.php trunk/lib/plugin/Calendar.php trunk/lib/plugin/CalendarList.php trunk/lib/plugin/Chart.php trunk/lib/plugin/CreateToc.php trunk/lib/plugin/DebugBackendInfo.php trunk/lib/plugin/EditMetaData.php trunk/lib/plugin/ExternalSearch.php trunk/lib/plugin/FuzzyPages.php trunk/lib/plugin/LinkSearch.php trunk/lib/plugin/ModeratedPage.php trunk/lib/plugin/PageDump.php trunk/lib/plugin/PageHistory.php trunk/lib/plugin/PhpHighlight.php trunk/lib/plugin/Processing.php trunk/lib/plugin/RateIt.php trunk/lib/plugin/RecentChangesCached.php trunk/lib/plugin/SemanticSearch.php trunk/lib/plugin/SemanticSearchAdvanced.php trunk/lib/plugin/SiteMap.php trunk/lib/plugin/SqlResult.php trunk/lib/plugin/SyncWiki.php trunk/lib/plugin/SyntaxHighlighter.php trunk/lib/plugin/SystemInfo.php trunk/lib/plugin/Template.php trunk/lib/plugin/TexToPng.php trunk/lib/plugin/TranslateText.php trunk/lib/plugin/UpLoad.php trunk/lib/plugin/UserPreferences.php trunk/lib/plugin/VisualWiki.php trunk/lib/plugin/WantedPages.php trunk/lib/plugin/WantedPagesOld.php trunk/lib/plugin/WikiAdminSearchReplace.php trunk/lib/plugin/WikiAdminSelect.php trunk/lib/plugin/WikiAdminSetAclSimple.php trunk/lib/plugin/WikiBlog.php trunk/lib/plugin/WikiFormRich.php trunk/lib/plugin/WikiTranslation.php trunk/lib/plugin/YouTube.php Modified: trunk/lib/plugin/AnalyseAccessLogSql.php =================================================================== --- trunk/lib/plugin/AnalyseAccessLogSql.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/AnalyseAccessLogSql.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -29,6 +29,9 @@ class WikiPlugin_AnalyseAccessLogSql extends WikiPlugin { + public $_theadrow; + public $_headerSet; + /** * Build the query string * @@ -52,6 +55,8 @@ * ."FROM $accesslog " * ."WHERE referer IS NOT NULL " * .$where_conditions + * @param array $args + * @return string */ private function getQueryString(&$args) { Modified: trunk/lib/plugin/AsciiMath.php =================================================================== --- trunk/lib/plugin/AsciiMath.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/AsciiMath.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -41,6 +41,8 @@ class WikiPlugin_AsciiMath extends WikiPlugin { + public $source; + function getDescription() { return _("Render ASCII Math as MathML."); Modified: trunk/lib/plugin/AsciiSVG.php =================================================================== --- trunk/lib/plugin/AsciiSVG.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/AsciiSVG.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -28,6 +28,8 @@ class WikiPlugin_AsciiSVG extends WikiPlugin { + public $source; + function getDescription() { return _("Render inline ASCII SVG."); Modified: trunk/lib/plugin/AuthorHistory.php =================================================================== --- trunk/lib/plugin/AuthorHistory.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/AuthorHistory.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -59,6 +59,8 @@ class WikiPlugin_AuthorHistory extends WikiPlugin { + public $_args; + function getDescription() { return sprintf(_("List all page revisions edited by one user with diff links, or show a PageHistory-like list of a single page for only one user.")); Modified: trunk/lib/plugin/Calendar.php =================================================================== --- trunk/lib/plugin/Calendar.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/Calendar.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -35,6 +35,10 @@ class WikiPlugin_Calendar extends WikiPlugin { + public $args; + private $_today; + public $_links; + function getDescription() { return _("Calendar"); Modified: trunk/lib/plugin/CalendarList.php =================================================================== --- trunk/lib/plugin/CalendarList.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/CalendarList.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -49,6 +49,9 @@ class WikiPlugin_CalendarList extends WikiPlugin { + public $args; + public $_links; + function getDescription() { return _("CalendarList"); Modified: trunk/lib/plugin/Chart.php =================================================================== --- trunk/lib/plugin/Chart.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/Chart.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -46,6 +46,8 @@ class WikiPlugin_Chart extends WikiPlugin { + public $source; + function getDescription() { return _("Render SVG charts."); Modified: trunk/lib/plugin/CreateToc.php =================================================================== --- trunk/lib/plugin/CreateToc.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/CreateToc.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -40,6 +40,8 @@ class WikiPlugin_CreateToc extends WikiPlugin { + public $_markup; + function getDescription() { return _("Create a Table of Contents and automatically link to headers."); Modified: trunk/lib/plugin/DebugBackendInfo.php =================================================================== --- trunk/lib/plugin/DebugBackendInfo.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/DebugBackendInfo.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -26,6 +26,10 @@ class WikiPlugin_DebugBackendInfo extends WikiPlugin { + public $chunk_split; + public $readonly_pagemeta; + public $hidden_pagemeta; + function getDescription() { return sprintf(_("Get debugging information for %s."), '[pagename]'); Modified: trunk/lib/plugin/EditMetaData.php =================================================================== --- trunk/lib/plugin/EditMetaData.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/EditMetaData.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -44,6 +44,8 @@ class WikiPlugin_EditMetaData extends WikiPlugin_DebugBackendInfo { + public $_args; + function getDescription() { return sprintf(_("Edit metadata for %s."), '[pagename]'); Modified: trunk/lib/plugin/ExternalSearch.php =================================================================== --- trunk/lib/plugin/ExternalSearch.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/ExternalSearch.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -36,6 +36,10 @@ class WikiPlugin_ExternalSearch extends WikiPlugin { + public $_url; + public $_name; + public $_s; + function getDescription() { return _("Redirect to an external web site based on form input."); Modified: trunk/lib/plugin/FuzzyPages.php =================================================================== --- trunk/lib/plugin/FuzzyPages.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/FuzzyPages.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -35,6 +35,11 @@ class WikiPlugin_FuzzyPages extends WikiPlugin { + public $_searchterm; + public $_searchterm_metaphone; + public $debug; + public $_list; + function getDescription() { return sprintf(_("Search for page titles similar to %s."), Modified: trunk/lib/plugin/LinkSearch.php =================================================================== --- trunk/lib/plugin/LinkSearch.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/LinkSearch.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -31,6 +31,8 @@ class WikiPlugin_LinkSearch extends WikiPlugin { + public $current_row; + function getDescription() { return _("Search page and link names."); Modified: trunk/lib/plugin/ModeratedPage.php =================================================================== --- trunk/lib/plugin/ModeratedPage.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/ModeratedPage.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -38,6 +38,8 @@ class WikiPlugin_ModeratedPage extends WikiPlugin { + public $_tokens; + function getDescription() { return _("Support moderated pages."); Modified: trunk/lib/plugin/PageDump.php =================================================================== --- trunk/lib/plugin/PageDump.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/PageDump.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -51,6 +51,7 @@ extends WikiPlugin { public $MessageId; + public $pagename; function getDescription() { Modified: trunk/lib/plugin/PageHistory.php =================================================================== --- trunk/lib/plugin/PageHistory.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/PageHistory.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -25,9 +25,10 @@ class _PageHistory_PageRevisionIter extends WikiDB_PageRevisionIterator { + public $_itemcount; + function _PageHistory_PageRevisionIter($rev_iter, $params) { - $this->_iter = $rev_iter; extract($params); Modified: trunk/lib/plugin/PhpHighlight.php =================================================================== --- trunk/lib/plugin/PhpHighlight.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/PhpHighlight.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -29,6 +29,14 @@ class WikiPlugin_PhpHighlight extends WikiPlugin { + public $source; + public $oldstring; + public $oldcomment; + public $oldkeyword; + public $oldbg; + public $oldhtml; + public $olddefault; + function getDescription() { return _("PHP syntax highlighting."); @@ -58,7 +66,6 @@ */ function run($dbi, $argstr, &$request, $basepage) { - extract($this->getArgs($argstr, $request)); $source =& $this->source; if (empty($source)) { Modified: trunk/lib/plugin/Processing.php =================================================================== --- trunk/lib/plugin/Processing.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/Processing.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -27,6 +27,8 @@ class WikiPlugin_Processing extends WikiPlugin { + public $source; + function getDescription() { return _("Render inline Processing."); Modified: trunk/lib/plugin/RateIt.php =================================================================== --- trunk/lib/plugin/RateIt.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/RateIt.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -86,7 +86,15 @@ { static $toBeUniq = 1; public $idTop = ''; + public $imgPrefix; + public $dimension; + public $rating; + public $avg; + public $userid; + public $pagename; + public $numusers; + function getDescription() { return _("Rating system. Store user ratings per page."); Modified: trunk/lib/plugin/RecentChangesCached.php =================================================================== --- trunk/lib/plugin/RecentChangesCached.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/RecentChangesCached.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -34,6 +34,11 @@ class WikiPlugin_RecentChangesCached extends WikiPluginCached { + public $_args; + public $_type; + public $_static; + public $_dbi; + function getPluginType() { return PLUGIN_CACHED_HTML; @@ -54,11 +59,12 @@ return '+900'; // 15 minutes } - // We don't go through pi parsing, instead we go directly to the - // better plugin methods. /** + * We don't go through pi parsing, instead we go directly to the + * better plugin methods. + * * @param WikiDB $dbi - * @param string $argstr + * @param string $args * @param WikiRequest $request * @param string $basepage * @return mixed @@ -86,9 +92,17 @@ trigger_error('pure virtual', E_USER_ERROR); } - // ->box is used to display a fixed-width, narrow version with common header. - // Just a limited list of pagenames, without date. - // This does not use ->run, to avoid pi construction and deconstruction + /** + * ->box is used to display a fixed-width, narrow version with common header. + * Just a limited list of pagenames, without date. + * This does not use ->run, to avoid pi construction and deconstruction + * + * @param string $args + * @param WikiRequest $request + * @param string $basepage + * @param bool $do_save + * @return $this|HtmlElement|XmlContent + */ function box($args = '', $request = null, $basepage = '', $do_save = false) { if (!$request) $request =& $GLOBALS['request']; Modified: trunk/lib/plugin/SemanticSearch.php =================================================================== --- trunk/lib/plugin/SemanticSearch.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/SemanticSearch.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -54,6 +54,12 @@ class WikiPlugin_SemanticSearch extends WikiPlugin { + public $_norelations_warning; + public $_supported_operators; + public $_text_operators; + public $_links; + public $current_row; + function getDescription() { return _("Search relations and attributes."); Modified: trunk/lib/plugin/SemanticSearchAdvanced.php =================================================================== --- trunk/lib/plugin/SemanticSearchAdvanced.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/SemanticSearchAdvanced.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -58,6 +58,8 @@ class WikiPlugin_SemanticSearchAdvanced extends WikiPlugin_SemanticSearch { + public $_supported_operators; + function getDescription() { return _("Parse and execute a full query expression."); Modified: trunk/lib/plugin/SiteMap.php =================================================================== --- trunk/lib/plugin/SiteMap.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/SiteMap.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -46,6 +46,12 @@ extends WikiPlugin { public $_pagename; + public $ExcludedPages; + public $firstreversed; + public $initialpage; + public $excludeunknown; + public $dbi; + public $_default_limit; function getDescription() { Modified: trunk/lib/plugin/SqlResult.php =================================================================== --- trunk/lib/plugin/SqlResult.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/SqlResult.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -62,6 +62,7 @@ extends WikiPlugin { public $_args; + public $_sql; function getDescription() { Modified: trunk/lib/plugin/SyncWiki.php =================================================================== --- trunk/lib/plugin/SyncWiki.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/SyncWiki.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -42,6 +42,8 @@ class WikiPlugin_SyncWiki extends WikiPlugin_WikiAdminUtils { + public $_fileList; + function getDescription() { return _("Synchronize pages with external PhpWiki."); Modified: trunk/lib/plugin/SyntaxHighlighter.php =================================================================== --- trunk/lib/plugin/SyntaxHighlighter.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/SyntaxHighlighter.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -23,6 +23,8 @@ class WikiPlugin_SyntaxHighlighter extends WikiPlugin { + public $source; + function getDescription() { return _("Source code syntax highlighter (via http://highlightjs.org/)."); Modified: trunk/lib/plugin/SystemInfo.php =================================================================== --- trunk/lib/plugin/SystemInfo.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/SystemInfo.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -42,9 +42,12 @@ */ require_once 'lib/WikiPluginCached.php'; + class WikiPlugin_SystemInfo extends WikiPluginCached { + public $_dbi; + function getPluginType() { return PLUGIN_CACHED_HTML; @@ -73,7 +76,7 @@ /** * @param WikiDB $dbi - * @param string $argstr + * @param array $argarray * @param WikiRequest $request * @param string $basepage * @return mixed Modified: trunk/lib/plugin/Template.php =================================================================== --- trunk/lib/plugin/Template.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/Template.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -57,6 +57,8 @@ class WikiPlugin_Template extends WikiPlugin { + public $vars; + function getDescription() { return _("Parametrized page inclusion."); Modified: trunk/lib/plugin/TexToPng.php =================================================================== --- trunk/lib/plugin/TexToPng.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/TexToPng.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -94,6 +94,8 @@ class WikiPlugin_TexToPng extends WikiPluginCached { + public $_errortext; + function getPluginType() { return PLUGIN_CACHED_IMG_ONDEMAND; @@ -170,7 +172,7 @@ } else { if (!$this->_errortext) { // yeah, I've been told to be quiet, but obviously - // an error occured. So at least complain silently. + // an error occurred. So at least complain silently. $this->complain(' '); } } Modified: trunk/lib/plugin/TranslateText.php =================================================================== --- trunk/lib/plugin/TranslateText.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/TranslateText.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -40,6 +40,8 @@ class WikiPlugin_TranslateText extends WikiPlugin_WikiTranslation { + public $lang; + function getDescription() { return _("Define a translation for a specified text."); Modified: trunk/lib/plugin/UpLoad.php =================================================================== --- trunk/lib/plugin/UpLoad.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/UpLoad.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -36,6 +36,7 @@ class WikiPlugin_UpLoad extends WikiPlugin { + public $allowed_extensions; public $disallowed_extensions; // TODO: use PagePerms instead public $only_authenticated = true; // allow only authenticated users may upload. Modified: trunk/lib/plugin/UserPreferences.php =================================================================== --- trunk/lib/plugin/UserPreferences.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/UserPreferences.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -34,6 +34,7 @@ extends WikiPlugin { public $bool_args; + public $_request; function getDescription() { Modified: trunk/lib/plugin/VisualWiki.php =================================================================== --- trunk/lib/plugin/VisualWiki.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/VisualWiki.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -34,6 +34,11 @@ class WikiPlugin_VisualWiki extends WikiPlugin_GraphViz { + public $pages; + public $names; + public $ColorTab; + public $oldest; + /** * Sets plugin type to map production */ Modified: trunk/lib/plugin/WantedPages.php =================================================================== --- trunk/lib/plugin/WantedPages.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/WantedPages.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -35,6 +35,8 @@ class WikiPlugin_WantedPages extends WikiPlugin { + public $_wpagelist; + function getDescription() { return _("List referenced page names which do not exist yet."); Modified: trunk/lib/plugin/WantedPagesOld.php =================================================================== --- trunk/lib/plugin/WantedPagesOld.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/WantedPagesOld.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -26,6 +26,11 @@ class WikiPlugin_WantedPagesOld extends WikiPlugin { + public $pagelist; + public $_rows; + public $_messageIfEmpty; + public $_columns; + function getDescription() { return _("List referenced page names which do not exist yet."); Modified: trunk/lib/plugin/WikiAdminSearchReplace.php =================================================================== --- trunk/lib/plugin/WikiAdminSearchReplace.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/WikiAdminSearchReplace.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -156,7 +156,7 @@ return $result; } - public function replaceHelper(&$dbi, &$request, $pagename, $from, $to, $case_exact = true, $regex = false) + public static function replaceHelper(&$dbi, &$request, $pagename, $from, $to, $case_exact = true, $regex = false) { $page = $dbi->getPage($pagename); if ($page->exists()) { // don't replace default contents Modified: trunk/lib/plugin/WikiAdminSelect.php =================================================================== --- trunk/lib/plugin/WikiAdminSelect.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/WikiAdminSelect.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -37,6 +37,9 @@ class WikiPlugin_WikiAdminSelect extends WikiPlugin { + public $_list; + public $_args; + function getDescription() { return _("Allows selection of multiple pages which get passed to other WikiAdmin plugins."); @@ -61,6 +64,13 @@ /** * Default collector for all WikiAdmin* plugins. * preSelectS() is similar, but fills $this->_list + * + * @param array $list + * @param WikiDB $dbi + * @param string $sortby + * @param int $limit + * @param string $exclude + * @return array */ protected function collectPages(&$list, &$dbi, $sortby, $limit = 0, $exclude = '') { @@ -79,6 +89,10 @@ * 'author', 'owner', 'creator': from WikiDB_Page * 'only: forgot what the difference to 's' was. * Sets $this->_list, which is picked up by collectPages() and is a default for p[] + * + * @param array $args + * @param WikiRequest $request + * @return array */ protected function preSelectS(&$args, &$request) { Modified: trunk/lib/plugin/WikiAdminSetAclSimple.php =================================================================== --- trunk/lib/plugin/WikiAdminSetAclSimple.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/WikiAdminSetAclSimple.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -34,6 +34,8 @@ class WikiPlugin_WikiAdminSetAclSimple extends WikiPlugin_WikiAdminSetAcl { + public $_args; + function getDescription() { return _("Set simple individual page permissions."); Modified: trunk/lib/plugin/WikiBlog.php =================================================================== --- trunk/lib/plugin/WikiBlog.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/WikiBlog.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -132,6 +132,10 @@ /** * posted: required: pagename, content. optional: summary + * + * @param WikiRequest $request + * @param array $posted + * @param string $type */ function add(&$request, $posted, $type = 'wikiblog') { Modified: trunk/lib/plugin/WikiFormRich.php =================================================================== --- trunk/lib/plugin/WikiFormRich.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/WikiFormRich.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -97,6 +97,8 @@ class WikiPlugin_WikiFormRich extends WikiPlugin { + public $inputbox; + function getDescription() { return _("Provide generic WikiForm input buttons."); Modified: trunk/lib/plugin/WikiTranslation.php =================================================================== --- trunk/lib/plugin/WikiTranslation.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/WikiTranslation.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -244,6 +244,10 @@ class WikiPlugin_WikiTranslation extends WikiPlugin { + public $lang; + public $_locales; + public $_reverse_locales; + public $args; function getDescription() { Modified: trunk/lib/plugin/YouTube.php =================================================================== --- trunk/lib/plugin/YouTube.php 2014-11-09 18:14:51 UTC (rev 9297) +++ trunk/lib/plugin/YouTube.php 2014-11-09 18:15:48 UTC (rev 9298) @@ -37,6 +37,14 @@ class WikiPlugin_YouTube extends WikiPlugin { + public $_browse; + public $browse; + public $_time; + public $_category; + public $_language; + public $category; + public $language; + function getDescription() { return _("Embed YouTube videos."); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |