Additional small documentation updates of system classes
authorMatthias Schmidt <gravatronics@live.com>
Wed, 3 Aug 2011 15:13:40 +0000 (17:13 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Wed, 3 Aug 2011 15:13:40 +0000 (17:13 +0200)
wcfsetup/install/files/lib/system/language/LanguageFactory.class.php
wcfsetup/install/files/lib/system/menu/TreeMenu.class.php

index f426954fa75a4c2880affd09dae10ae750d03959..c375e86b8fddb6b07713b6d3deb756ab5283f92f 100644 (file)
@@ -18,19 +18,19 @@ use wcf\util\StringUtil;
  */
 abstract class LanguageFactory {
        /**
-        * Language cache
+        * language cache
         * @var array<array>
         */
        private static $cache = null;
        
        /**
-        * Initialized languages
+        * initialized languages
         * @var array<wcf\data\language\Language>
         */
        private static $languages = array();
        
        /**
-        * Active template scripting compiler
+        * active template scripting compiler
         * @var wcf\system\template\TemplateScriptingCompiler
         */
        private static $scriptingCompiler = null;
index d09fc74b69149c8b60830f92efc74d8835ae6671..c854c528f81faa04c1967a73811294c55071c111 100644 (file)
@@ -17,23 +17,20 @@ use wcf\util\FileUtil;
  */
 abstract class TreeMenu extends SingletonFactory {
        /**
-        * List of visible menu items.
-        * 
-        * @var array
+        * list of visible menu items
+        * @var array<wcf\system\menu\ITreeMenuItem>
         */
        public $menuItemList = array();
        
        /**
-        * List of active menu items.
-        * 
-        * @var array
+        * list of the names of the active menu items
+        * @var array<string>
         */
        public $activeMenuItems = array();
        
        /**
-        * List of all menu items.
-        * 
-        * @var array
+        * list of all menu items
+        * @var array<wcf\system\menu\ITreeMenuItem>
         */
        public $menuItems = null;