From: <var...@us...> - 2014-10-01 15:28:43
|
Revision: 9149 http://sourceforge.net/p/phpwiki/code/9149 Author: vargenau Date: 2014-10-01 15:28:36 +0000 (Wed, 01 Oct 2014) Log Message: ----------- PHP Doc update Modified Paths: -------------- trunk/lib/PageList.php trunk/lib/WikiPlugin.php Modified: trunk/lib/PageList.php =================================================================== --- trunk/lib/PageList.php 2014-10-01 15:25:56 UTC (rev 9148) +++ trunk/lib/PageList.php 2014-10-01 15:28:36 UTC (rev 9149) @@ -184,6 +184,11 @@ $this->_field = $field; } + /** + * @param WikiDB_Page $page_handle + * @param WikiDB_PageRevision $revision_handle + * @return mixed + */ function _getValue($page_handle, &$revision_handle) { if ($this->_need_rev) { @@ -196,6 +201,11 @@ } } + /** + * @param WikiDB_Page $page_handle + * @param WikiDB_PageRevision $revision_handle + * @return int|string + */ function _getSortableValue($page_handle, &$revision_handle) { $val = $this->_getValue($page_handle, $revision_handle); Modified: trunk/lib/WikiPlugin.php =================================================================== --- trunk/lib/WikiPlugin.php 2014-10-01 15:25:56 UTC (rev 9148) +++ trunk/lib/WikiPlugin.php 2014-10-01 15:28:36 UTC (rev 9149) @@ -101,6 +101,12 @@ return _('This plugin has no description.'); } + /** + * @param string $argstr + * @param WikiRequest $request + * @param array $defaults + * @return array + */ function getArgs($argstr, $request = false, $defaults = array()) { if (empty($defaults)) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |