From c96e69f07f9d306b07f72b084de80a67853cdd53 Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Wed, 10 Aug 2011 15:58:26 +0200 Subject: [PATCH] Updated documentations of wcf\system\WCF and wcf\system\WCFACP --- wcfsetup/install/files/lib/system/WCF.class.php | 13 ++----------- wcfsetup/install/files/lib/system/WCFACP.class.php | 4 ++-- 2 files changed, 4 insertions(+), 13 deletions(-) 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(); -- 2.20.1