N.1117 some PHPDoc modifications

SVN:trunk[5104]
This commit is contained in:
Pierre Goiffon
2017-10-27 08:56:45 +00:00
parent c607a7e35d
commit 1fed66fff3
2 changed files with 2640 additions and 2632 deletions

View File

@@ -239,6 +239,11 @@ abstract class DBSearch
return base64_encode(serialize(array($sOql, $this->GetInternalParams(), $this->m_aModifierProperties)));
}
/**
* @param string $sValue Serialized OQL query
*
* @return \DBSearch
*/
static public function unserialize($sValue)
{
$aData = unserialize(base64_decode($sValue));

View File

@@ -232,11 +232,14 @@ function DisplaySearchSet($oP, $oFilter, $bSearchForm = true, $sBaseClass = '',
/**
* Displays a form (checkboxes) to select the objects for which to apply a given action
* Only the objects for which the action is valid can be checked. By default all valid objects are checked
* @param $oP WebPage The page for output
* @param $oFilter DBSearch The filter that defines the list of objects
* @param $sNextOperation string The next operation (code) to be executed when the form is submitted
* @param $oChecker ActionChecker The helper class/instance used to check for which object the action is valid
* @return none
*
* @param \WebPage $oP WebPage The page for output
* @param \DBSearch $oFilter DBSearch The filter that defines the list of objects
* @param string $sNextOperation string The next operation (code) to be executed when the form is submitted
* @param ActionChecker $oChecker ActionChecker The helper class/instance used to check for which object the action is valid
* @param array $aExtraFormParams
*
* @throws \ApplicationException
*/
function DisplayMultipleSelectionForm($oP, $oFilter, $sNextOperation, $oChecker, $aExtraFormParams = array())
{