DomCI : Change the non existing PHPDocs types
git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3269 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
@@ -686,8 +686,8 @@ class dblayer
|
||||
* @param array|null $order Sort the columns by orientation
|
||||
* $order = array (array ($key, $orientation), ...)
|
||||
* $key=>column, $orientation=ASC/DESC
|
||||
* @param bool|null $whereOr The WHERE parameters are separated by OR instead
|
||||
* of AND
|
||||
* @param boolean|null $whereOr The WHERE parameters are separated by OR
|
||||
* instead of AND
|
||||
* @param array|null $foreignSelect Add a filter on foreign keys
|
||||
* @return array array ([0] => array (column=>value, column=>value),);
|
||||
*/
|
||||
@@ -1422,8 +1422,8 @@ class dblayer
|
||||
@param array|null &$order Sort the columns by orientation
|
||||
$order = array (array ($key, $orientation), ...)
|
||||
$key=>column, $orientation=ASC/DESC
|
||||
@param bool|null &$whereOr The WHERE parameters are separated by OR
|
||||
instead of AND
|
||||
@param boolean|null &$whereOr The WHERE parameters are separated by OR
|
||||
instead of AND
|
||||
@param array|null &$foreignSelect Add a filter on foreign keys */
|
||||
public function hookpreread (&$select, &$display, &$order, &$whereOr,
|
||||
&$foreignSelect)
|
||||
|
||||
@@ -41,7 +41,7 @@ class dblayerauthzgroups extends dblayer
|
||||
@param array|null &$order Sort the columns by orientation
|
||||
$order = array (array ($key, $orientation), ...)
|
||||
$key=>column, $orientation=ASC/DESC
|
||||
@param bool|null &$whereOr The WHERE parameters are separated by OR
|
||||
@param boolean|null &$whereOr The WHERE parameters are separated by OR
|
||||
instead of AND
|
||||
@param array|null &$foreignSelect Add a filter on foreign keys */
|
||||
public function hookpreread (&$select, &$display, &$order, &$whereOr,
|
||||
|
||||
4
file.php
4
file.php
@@ -445,7 +445,7 @@ class file
|
||||
|
||||
/** Return a ini file converted to an array
|
||||
* @param string $filename The filename of the ini file being parsed.
|
||||
* @param bool $process_sections Process the sections
|
||||
* @param boolean $process_sections Process the sections
|
||||
* @return array
|
||||
*/
|
||||
public function parse_ini_file ($filename, $process_sections = false)
|
||||
@@ -513,7 +513,7 @@ class file
|
||||
* If the recurse flag is true, remove the content too (files and
|
||||
* directories)
|
||||
* @param string $dirname The directory to remove
|
||||
* @param bool $recursive Remove recursively
|
||||
* @param boolean $recursive Remove recursively
|
||||
* @return bool true if all is removed, false otherwise
|
||||
* @throws If parent directory not exists, is not writeable or the current
|
||||
* dir is not writeable
|
||||
|
||||
9
mail.php
9
mail.php
@@ -729,7 +729,8 @@ class mail
|
||||
* @param string $fileContent The content of the file in binary
|
||||
* @param string|null $encoding The output encoding. Can be
|
||||
* base64/quoted-printable
|
||||
* @param bool|null $inline Store the file in inline mode (multipart/related)
|
||||
* @param boolean|null $inline Store the file in inline mode
|
||||
* (multipart/related)
|
||||
* If false, store the file in attached mode (multipart/mixed)
|
||||
*/
|
||||
public function addAttachment ($name, $fileContent, $encoding="base64",
|
||||
@@ -834,7 +835,7 @@ class mail
|
||||
|
||||
/** Get an attachment of the mail
|
||||
* @param integer $number the number of attach to get starting to 0
|
||||
* @param bool|null $inline Return only the attachments Inline if true
|
||||
* @param boolean|null $inline Return only the attachments Inline if true
|
||||
* @return the content of the attachment. Can be binary
|
||||
*/
|
||||
public function getAttachment ($number, $inline = false)
|
||||
@@ -851,7 +852,7 @@ class mail
|
||||
|
||||
/** Get the attachment details
|
||||
* @param integer $number the number of attach to get starting to 0
|
||||
* @param bool|null $inline Return only the attachments Inline if true
|
||||
* @param boolean|null $inline Return only the attachments Inline if true
|
||||
* @return array containing the information of the attachment
|
||||
*/
|
||||
public function getAttachmentDetails ($number, $inline = false)
|
||||
@@ -879,7 +880,7 @@ class mail
|
||||
|
||||
/** Return the list of the sectionID containing a attachment. Contains the
|
||||
* inline attachments too.
|
||||
* @param bool $inline Return only the sections Inline if true
|
||||
* @param boolean $inline Return only the sections Inline if true
|
||||
* @return array The sectionIDs
|
||||
*/
|
||||
private function getAttachmentID ($inline = false)
|
||||
|
||||
@@ -67,7 +67,7 @@ class route
|
||||
/** Return the baseURL of the site
|
||||
* Always finish with a slash
|
||||
* @param string|null $module The module name (if thereis one)
|
||||
* @param bool|null $absolute Return the baseURL in absolute
|
||||
* @param boolean|null $absolute Return the baseURL in absolute
|
||||
* @return string The URL base
|
||||
*/
|
||||
function baseURL ($module = FALSE, $absolute=false)
|
||||
@@ -161,7 +161,7 @@ class route
|
||||
}
|
||||
|
||||
/** Return the complete URL used to see this page
|
||||
* @param bool|null $absolute Return the absolute URL
|
||||
* @param boolean|null $absolute Return the absolute URL
|
||||
* @return string the complete URL used to see this page
|
||||
*/
|
||||
function requestURL ($absolute = false)
|
||||
|
||||
Reference in New Issue
Block a user