Updated documentations of wcf\system\WCF and wcf\system\WCFACP
authorMatthias Schmidt <gravatronics@live.com>
Wed, 10 Aug 2011 13:58:26 +0000 (15:58 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Wed, 10 Aug 2011 13:58:26 +0000 (15:58 +0200)
wcfsetup/install/files/lib/system/WCF.class.php
wcfsetup/install/files/lib/system/WCFACP.class.php

index b00e09dfd2da2588bf33c40ec578492bf9842ad5..de4de0583d5a073ee3701086eef2b6dd25975590 100644 (file)
@@ -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<wcf\system\SingletonFactory>
         */
        protected static $coreObject = array();
        
        /**
         * list of cached core objects
-        *
         * @var array<array>
         */
        protected static $coreObjectCache = array();
        
        /**
-        * list of package dependencies
-        *
-        * @var array
+        * list of ids of dependent packages
+        * @var array<integer>
         */     
        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;
index 88694258a6f10eb10ab0a5cfe7a4917461830573..d2f6cc762b12c7c53ba2a1f4ab572839ab42842c 100644 (file)
@@ -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();