Doxygen
This commit is contained in:
parent
85d91c82e8
commit
b005c9389b
@ -3212,7 +3212,7 @@ class lessc_parser
|
|||||||
$value = null;
|
$value = null;
|
||||||
if ($this->literal("(") &&
|
if ($this->literal("(") &&
|
||||||
$this->keyword($feature) &&
|
$this->keyword($feature) &&
|
||||||
($this->literal(":") && $this->expression($value) || true) &&
|
($this->literal(":") && $this->expression($value)) &&
|
||||||
$this->literal(")")
|
$this->literal(")")
|
||||||
) {
|
) {
|
||||||
$out = array("mediaExp", $feature);
|
$out = array("mediaExp", $feature);
|
||||||
|
|||||||
@ -29,7 +29,7 @@ require_once DOL_DOCUMENT_ROOT.'/core/db/Database.interface.php';
|
|||||||
*/
|
*/
|
||||||
abstract class DoliDB implements Database
|
abstract class DoliDB implements Database
|
||||||
{
|
{
|
||||||
/** @var bool|resource|SQLite3|PgSql\connection Database handler */
|
/** @var bool|resource|mysqli|SQLite3|PgSql\connection Database handler */
|
||||||
public $db;
|
public $db;
|
||||||
/** @var string Database type */
|
/** @var string Database type */
|
||||||
public $type;
|
public $type;
|
||||||
@ -37,8 +37,10 @@ abstract class DoliDB implements Database
|
|||||||
public $forcecharset = 'utf8';
|
public $forcecharset = 'utf8';
|
||||||
/** @var string Collate used to force collate when creating database */
|
/** @var string Collate used to force collate when creating database */
|
||||||
public $forcecollate = 'utf8_unicode_ci';
|
public $forcecollate = 'utf8_unicode_ci';
|
||||||
|
|
||||||
/** @var resource Resultset of last query */
|
/** @var resource Resultset of last query */
|
||||||
private $_results;
|
private $_results;
|
||||||
|
|
||||||
/** @var bool true if connected, else false */
|
/** @var bool true if connected, else false */
|
||||||
public $connected;
|
public $connected;
|
||||||
/** @var bool true if database selected, else false */
|
/** @var bool true if database selected, else false */
|
||||||
@ -73,7 +75,8 @@ abstract class DoliDB implements Database
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the DB prefix
|
* Return the DB prefix found into prefix_db (if it was set manually by doing $db->prefix_db=...).
|
||||||
|
* Otherwise return MAIN_DB_PREFIX (common use).
|
||||||
*
|
*
|
||||||
* @return string The DB prefix
|
* @return string The DB prefix
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -36,10 +36,12 @@ class DoliDBMysqli extends DoliDB
|
|||||||
public $db;
|
public $db;
|
||||||
//! Database type
|
//! Database type
|
||||||
public $type = 'mysqli';
|
public $type = 'mysqli';
|
||||||
|
|
||||||
//! Database label
|
//! Database label
|
||||||
const LABEL = 'MySQL or MariaDB';
|
const LABEL = 'MySQL or MariaDB';
|
||||||
//! Version min database
|
//! Version min database
|
||||||
const VERSIONMIN = '5.0.3';
|
const VERSIONMIN = '5.0.3';
|
||||||
|
|
||||||
/** @var bool|mysqli_result Resultset of last query */
|
/** @var bool|mysqli_result Resultset of last query */
|
||||||
private $_results;
|
private $_results;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user