From: Matthias Schmidt Date: Wed, 7 Sep 2011 08:22:30 +0000 (+0200) Subject: Updates documentation of wcf\data\DatabaseObjectList X-Git-Tag: 2.0.0_Beta_1~1791^2~2^2~5 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=16e013cf7662c85d0c3ef92b14e3b49c4bedc0ce;p=GitHub%2FWoltLab%2FWCF.git Updates documentation of wcf\data\DatabaseObjectList --- diff --git a/wcfsetup/install/files/lib/data/DatabaseObjectList.class.php b/wcfsetup/install/files/lib/data/DatabaseObjectList.class.php index d342f23fe4..11133a6736 100644 --- a/wcfsetup/install/files/lib/data/DatabaseObjectList.class.php +++ b/wcfsetup/install/files/lib/data/DatabaseObjectList.class.php @@ -16,71 +16,61 @@ use wcf\system\WCF; abstract class DatabaseObjectList { /** * object class name - * * @var string */ public $className = ''; /** * result objects - * * @var array */ public $objects = array(); /** - * result object ids - * + * ids of result objects * @var array */ public $objectIDs = null; /** * sql offset - * - * @var integer + * @var integer */ public $sqlOffset = 0; /** * sql limit - * - * @var integer + * @var integer */ public $sqlLimit = 20; /** * sql order by statement - * * @var string */ public $sqlOrderBy = ''; /** * sql select parameters - * - * @var string + * @var string */ public $sqlSelects = ''; /** * sql select joins which are necessary for where statements - * - * @var string + * @var string */ public $sqlConditionJoins = ''; /** * sql select joins - * - * @var string + * @var string */ public $sqlJoins = ''; /** * sql conditions - * - * @var wcf\system\database\util\PreparedStatementConditionBuilder + * @var wcf\system\database\util\PreparedStatementConditionBuilder */ protected $conditionBuilder = null; @@ -193,7 +183,7 @@ abstract class DatabaseObjectList { /** * Returns the name of the database table. * - * @return string + * @return string */ public function getDatabaseTableName() { return call_user_func(array($this->className, 'getDatabaseTableName')); @@ -202,7 +192,7 @@ abstract class DatabaseObjectList { /** * Returns the name of the database table. * - * @return string + * @return string */ public function getDatabaseTableIndexName() { return call_user_func(array($this->className, 'getDatabaseTableIndexName')); @@ -211,7 +201,7 @@ abstract class DatabaseObjectList { /** * Returns the name of the database table alias. * - * @return string + * @return string */ public function getDatabaseTableAlias() { return call_user_func(array($this->className, 'getDatabaseTableAlias'));