From: Matthias Schmidt Date: Wed, 10 Aug 2011 13:58:26 +0000 (+0200) Subject: Updated documentations of wcf\system\WCF and wcf\system\WCFACP X-Git-Tag: 2.0.0_Beta_1~1885^2~1^2~1 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=c96e69f07f9d306b07f72b084de80a67853cdd53;p=GitHub%2FWoltLab%2FWCF.git Updated documentations of wcf\system\WCF and wcf\system\WCFACP --- diff --git a/wcfsetup/install/files/lib/system/WCF.class.php b/wcfsetup/install/files/lib/system/WCF.class.php index b00e09dfd2..de4de0583d 100644 --- a/wcfsetup/install/files/lib/system/WCF.class.php +++ b/wcfsetup/install/files/lib/system/WCF.class.php @@ -42,63 +42,54 @@ if (!defined('NO_IMPORTS')) { class WCF { /** * list of autoload directories - * * @var array */ protected static $autoloadDirectories = array(); /** * list of unique instances of each core object - * * @var array */ protected static $coreObject = array(); /** * list of cached core objects - * * @var array */ protected static $coreObjectCache = array(); /** - * list of package dependencies - * - * @var array + * list of ids of dependent packages + * @var array */ protected static $packageDependencies = array(); /** * database object - * * @var wcf\system\database\Database */ protected static $dbObj = null; /** * language object - * * @var wcf\system\language\Language */ protected static $languageObj = null; /** * session object - * * @var wcf\system\session\SessionHandler */ protected static $sessionObj = null; /** * template object - * * @var wcf\system\template\TemplateEngine */ protected static $tplObj = null; /** * current user object - * * @var wcf\data\user\User */ protected static $userObj = null; diff --git a/wcfsetup/install/files/lib/system/WCFACP.class.php b/wcfsetup/install/files/lib/system/WCFACP.class.php index 88694258a6..d2f6cc762b 100644 --- a/wcfsetup/install/files/lib/system/WCFACP.class.php +++ b/wcfsetup/install/files/lib/system/WCFACP.class.php @@ -57,7 +57,7 @@ class WCFACP extends WCF { } /** - * Starts the session system. + * @see wcf\system\WCF::initSession() */ protected function initSession() { $factory = new ACPSessionFactory(); @@ -68,7 +68,7 @@ class WCFACP extends WCF { } /** - * Initialises the template engine. + * @see wcf\system\WCF::initTPL() */ protected function initTPL() { self::$tplObj = ACPTemplateEngine::getInstance();