Added some documentation fixes.
authorOkan Esen <pixel.b@gmail.com>
Sun, 31 Jul 2011 23:50:12 +0000 (01:50 +0200)
committerOkan Esen <pixel.b@gmail.com>
Sun, 31 Jul 2011 23:50:12 +0000 (01:50 +0200)
31 files changed:
wcfsetup/install/files/lib/acp/form/UserEditForm.class.php
wcfsetup/install/files/lib/acp/form/UserGroupAddForm.class.php
wcfsetup/install/files/lib/acp/form/UserGroupEditForm.class.php
wcfsetup/install/files/lib/data/DatabaseObjectDecorator.class.php
wcfsetup/install/files/lib/data/acp/session/data/ACPSessionDataList.class.php
wcfsetup/install/files/lib/data/language/SetupLanguage.class.php
wcfsetup/install/files/lib/data/user/option/category/UserOptionCategoryEditor.class.php
wcfsetup/install/files/lib/system/WCF.class.php
wcfsetup/install/files/lib/system/WCFACP.class.php
wcfsetup/install/files/lib/system/auth/UserAuthDefault.class.php
wcfsetup/install/files/lib/system/database/MySQLDatabase.class.php
wcfsetup/install/files/lib/system/database/PostgreSQLDatabase.class.php
wcfsetup/install/files/lib/system/database/editor/MySQLDatabaseEditor.class.php
wcfsetup/install/files/lib/system/database/editor/PostgreSQLDatabaseEditor.class.php
wcfsetup/install/files/lib/system/exception/IllegalLinkException.class.php
wcfsetup/install/files/lib/system/mail/PHPMailSender.class.php
wcfsetup/install/files/lib/system/mail/SMTPMailSender.class.php
wcfsetup/install/files/lib/system/menu/TreeMenu.class.php
wcfsetup/install/files/lib/system/menu/acp/ACPMenu.class.php
wcfsetup/install/files/lib/system/option/OptionTypePassword.class.php
wcfsetup/install/files/lib/system/package/PackageUninstallationDispatcher.class.php
wcfsetup/install/files/lib/system/session/SessionFactory.class.php
wcfsetup/install/files/lib/system/session/SessionHandler.class.php
wcfsetup/install/files/lib/system/template/ACPTemplateEngine.class.php
wcfsetup/install/files/lib/system/template/SetupTemplate.class.php
wcfsetup/install/files/lib/system/template/SetupTemplateEngine.class.php
wcfsetup/install/files/lib/system/template/TemplateEngine.class.php
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginFunctionHtmlcheckboxes.class.php
wcfsetup/install/files/lib/util/CronjobUtil.class.php
wcfsetup/install/files/lib/util/DirectoryUtil.class.php
wcfsetup/install/files/lib/util/XML.class.php

index 29dcb0aa991a30304b1412c91aaad3bd007c26d5..29359b31702590e3df82a33334dde0f1854bf006 100755 (executable)
@@ -22,7 +22,7 @@ use wcf\util\StringUtil;
  */
 class UserEditForm extends UserAddForm {
        /**
-        * @see UserAddForm::$menuItemName
+        * @see wcf\acp\form\UserAddForm::$menuItemName
         */
        public $menuItemName = 'wcf.acp.menu.link.user.management';
        
@@ -172,7 +172,7 @@ class UserEditForm extends UserAddForm {
        }
        
        /**
-        * @see UserAddForm::validateUsername()
+        * @see wcf\acp\form\UserAddForm::validateUsername()
         */
        protected function validateUsername($username) {
                if (StringUtil::toLowerCase($this->user->username) != StringUtil::toLowerCase($username)) {
@@ -181,7 +181,7 @@ class UserEditForm extends UserAddForm {
        }
        
        /**
-        * @see UserAddForm::validateEmail()
+        * @see wcf\acp\form\UserAddForm::validateEmail()
         */
        protected function validateEmail($email, $confirmEmail) {
                if (StringUtil::toLowerCase($this->user->email) != StringUtil::toLowerCase($email)) {
@@ -190,7 +190,7 @@ class UserEditForm extends UserAddForm {
        }
        
        /**
-        * @see UserAddForm::validatePassword()
+        * @see wcf\acp\form\UserAddForm::validatePassword()
         */
        protected function validatePassword($password, $confirmPassword) {
                if (!empty($password) || !empty($confirmPassword)) {
index a0b581735c8474219624cccbb1e2270294c7cfba..fbb6c10cef261885ea2cb1ed8649012e3c44a8fa 100755 (executable)
@@ -38,7 +38,7 @@ class UserGroupAddForm extends AbstractOptionListForm {
        public $menuItemName = 'wcf.acp.menu.link.group.add';
        
        /**
-        * @see AbstractOptionListForm::$cacheName
+        * @see wcf\acp\form\AbstractOptionListForm::$cacheName
         */
        public $cacheName = 'user_group-option-';
        
@@ -183,7 +183,7 @@ class UserGroupAddForm extends AbstractOptionListForm {
        }
        
        /**
-        * @see AbstractOptionListForm::getTypeObject()
+        * @see wcf\acp\form\AbstractOptionListForm::getTypeObject()
         */
        protected function getTypeObject($type) {
                if (!isset($this->typeObjects[$type])) {
index af158470a26d47c7430fc3a8840f09c57120b5c4..dcf95a7cabb355961c1cd03183dda01cd725c56a 100755 (executable)
@@ -21,7 +21,7 @@ use wcf\system\WCF;
  */
 class UserGroupEditForm extends UserGroupAddForm {
        /**
-        * @see UserGroupAddForm::$menuItemName
+        * @see wcf\acp\form\UserGroupAddForm::$menuItemName
         */
        public $menuItemName = 'wcf.acp.menu.link.group';
        
index 09da8621b3e20a053aef870e0bc7feeb1c9d9fa1..a57874050cb87040552c5ec6db2773845a31031e 100644 (file)
@@ -44,14 +44,14 @@ abstract class DatabaseObjectDecorator extends DatabaseObject {
        }
        
        /**
-        * @see DatabaseObject::__get()
+        * @see wcf\data\DatabaseObject::__get()
         */
        public function __get($name) {
                return $this->object->__get($name);
        }
        
        /**
-        * @see DatabaseObject::__isset()
+        * @see wcf\data\DatabaseObject::__isset()
         */
        public function __isset($name) {
                return $this->object->__isset($name);
index 2ba603bc83286c9dfc2b409aabde53acc35a785a..147970b111f42baa27bca7dcc24a08bb7c489cec 100644 (file)
@@ -14,7 +14,7 @@ use wcf\data\DatabaseObjectList;
  */
 class ACPSessionDataList extends DatabaseObjectList {
        /**
-        * @see DatabaseObjectList::$className
+        * @see wcf\data\DatabaseObjectList::$className
         */
        public $className = 'wcf\data\acp\session\data\ACPSessionData';
 }
index 4690e66f57522b5b51e9a1a69ca76e76b5788000..05753dd79158eb825adaea7d0edba8c2357876e0 100644 (file)
@@ -28,7 +28,7 @@ class SetupLanguage extends Language {
        }
        
        /**
-        * @see Language::loadCategory()
+        * @see wcf\data\language\Language::loadCategory()
         */
        protected function loadCategory($category) {
                return false;
index f2cf89644482a18874c0348e3ce9d59d9d86b5c0..9717583a25044a65c2f1bba37b7d207046cd3cb3 100644 (file)
@@ -14,7 +14,7 @@ use wcf\data\DatabaseObjectEditor;
  */
 class UserOptionCategoryEditor extends DatabaseObjectEditor {
        /**
-        * @see UserOptionCategory::$baseClass
+        * @see wcf\data\user\option\category\UserOptionCategory::$baseClass
         */
        protected static $baseClass = 'wcf\data\user\option\category\UserOptionCategory';
        
index a7c190f5428e8146b621fa160e4f7db9da02cde3..101352ccba53dd90857b35b47c48d4e590cce3ce 100644 (file)
@@ -514,7 +514,7 @@ class WCF {
        }
        
        /**
-        * @see WCF::__callStatic()
+        * @see wcf\system\WCF::__callStatic()
         */
        public final function __call($name, array $arguments) {
                // bug fix to avoid php crash, see http://bugs.php.net/bug.php?id=55020
index e8c8e1f3282ec4b1bca7c14e815712f2d817abc8..8be508a9a64abe7ac398502fcf6eb8cdcc592e59 100644 (file)
@@ -77,7 +77,7 @@ class WCFACP extends WCF {
        }
        
        /**
-        * @see WCF::assignDefaultTemplateVariables()
+        * @see wcf\system\WCF::assignDefaultTemplateVariables()
         */
        protected function assignDefaultTemplateVariables() {
                parent::assignDefaultTemplateVariables();
index 7fac6e7e88d35cdfcb3a9feb4af8a4f01cbef265..310938a926843092350db6c41cb6e6024738bf5e 100644 (file)
@@ -17,14 +17,14 @@ use wcf\util\StringUtil;
  */
 class UserAuthDefault extends UserAuth {
        /**
-        * @see UserAuth::supportsPersistentLogins()
+        * @see wcf\system\auth\UserAuth::supportsPersistentLogins()
         */
        public function supportsPersistentLogins() {
                return true;
        }
        
        /**
-        * @see UserAuth::loginManually()
+        * @see wcf\system\auth\UserAuth::loginManually()
         */
        public function loginManually($username, $password, $userClassname = 'wcf\data\user\User') {
                $user = User::getUserByUsername($username);
@@ -43,7 +43,7 @@ class UserAuthDefault extends UserAuth {
        }
        
        /**
-        * @see UserAuth::storeAccessData()
+        * @see wcf\system\auth\UserAuth::storeAccessData()
         */
        public function storeAccessData(User $user, $username, $password) {
                HeaderUtil::setCookie('userID', $user->userID, TIME_NOW + 365 * 24 * 3600);
@@ -51,7 +51,7 @@ class UserAuthDefault extends UserAuth {
        }
 
        /**
-        * @see UserAuth::loginAutomatically()
+        * @see wcf\system\auth\UserAuth::loginAutomatically()
         */
        public function loginAutomatically($persistent = false, $userClassname = 'wcf\data\user\User') {
                if (!$persistent) return null;
index 06a07e0ef549ae7bd8cdfc420020b2e60c49777b..8213b6fb610ba3e2d66f6e64096797c993e9162e 100644 (file)
@@ -14,12 +14,12 @@ use wcf\system\database\editor\MySQLDatabaseEditor;
  */
 class MySQLDatabase extends Database {
        /**
-        * @see Database::$editorClassName
+        * @see wcf\system\database\Database::$editorClassName
         */
        protected $editorClassName = 'wcf\system\database\editor\MySQLDatabaseEditor';
        
        /**
-        * @see Database::connect()
+        * @see wcf\system\database\Database::connect()
         */
        public function connect() {
                if (!$this->port) $this->port = 3306; // mysql default port
@@ -66,14 +66,14 @@ class MySQLDatabase extends Database {
        }
        
        /**
-        * @see Database::isSupported()
+        * @see wcf\system\database\Database::isSupported()
         */
        public static function isSupported() {
                return (extension_loaded('PDO') && extension_loaded('pdo_mysql'));
        }
        
        /**
-        * @see Database::handleLimitParameter()
+        * @see wcf\system\database\Database::handleLimitParameter()
         */
        public function handleLimitParameter($query, $limit = 0, $offset = 0) {
                if ($limit != 0) {
@@ -85,7 +85,7 @@ class MySQLDatabase extends Database {
        }
        
        /**
-        * @see PDODatabase::setAttributes()
+        * @see wcf\system\database\PDODatabase::setAttributes()
         */
        protected function setAttributes() {
                parent::setAttributes();
index 2ce6b6efa22d97ebe9d5f1d62805e156b209e4ac..d3569366bab7f5db50553de247828913d3fa6a42 100644 (file)
@@ -15,12 +15,12 @@ use wcf\util\StringStack;
  */
 class PostgreSQLDatabase extends Database {
        /**
-        * @see Database::$editorClassName
+        * @see wcf\system\database\Database::$editorClassName
         */
        protected $editorClassName = 'wcf\system\database\editor\PostgreSQLDatabaseEditor';
        
        /**
-        * @see Database::connect()
+        * @see wcf\system\database\Database::connect()
         */
        public function connect() {
                if (!$this->port) $this->port = 5432; // postgresql default port
@@ -51,14 +51,14 @@ class PostgreSQLDatabase extends Database {
        }
        
        /**
-        * @see Database::isSupported()
+        * @see wcf\system\database\Database::isSupported()
         */
        public static function isSupported() {
                return (extension_loaded('PDO') && extension_loaded('pdo_pgsql'));
        }
        
        /**
-        * @see Database::prepareStatement()
+        * @see wcf\system\database\Database::prepareStatement()
         */
        public function prepareStatement($statement, $limit = 0, $offset = 0) {
                $statement = self::fixQuery($statement);
@@ -66,7 +66,7 @@ class PostgreSQLDatabase extends Database {
        }
 
        /**
-        * @see Database::getInsertID()
+        * @see wcf\system\database\Database::getInsertID()
         */
        public function getInsertID($table, $field) {
                try {
@@ -102,7 +102,7 @@ class PostgreSQLDatabase extends Database {
        }
        
        /**
-        * @see Database::escapeString()
+        * @see wcf\system\database\Database::escapeString()
         */
        public function escapeString($string) {
                $string = str_replace("\x00", "\\x00", $string); // escape nul bytes
index a70f50fd3a09dccd6ca3c05bff5845861cf3bd2e..c9678debde7bcf4f8ff0e966ac36177ed6e72335 100644 (file)
@@ -14,7 +14,7 @@ use wcf\system\database\Database;
  */
 class MySQLDatabaseEditor extends DatabaseEditor {
        /**
-        * @see DatabaseEditor::getTableNames()
+        * @see wcf\system\database\editor\DatabaseEditor::getTableNames()
         */
        public function getTableNames() {
                $existingTables = array();
@@ -28,7 +28,7 @@ class MySQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::getColumns()
+        * @see wcf\system\database\editor\DatabaseEditor::getColumns()
         */
        public function getColumns($tableName) {
                $columns = array();
@@ -42,7 +42,7 @@ class MySQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::getIndices()
+        * @see wcf\system\database\editor\DatabaseEditor::getIndices()
         */
        public function getIndices($tableName) {
                $indices = array();
@@ -57,7 +57,7 @@ class MySQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::createTable()
+        * @see wcf\system\database\editor\DatabaseEditor::createTable()
         */
        public function createTable($tableName, $columns, $indices = array()) {
                $columnDefinition = $indexDefinition = '';
@@ -87,7 +87,7 @@ class MySQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::dropTable()
+        * @see wcf\system\database\editor\DatabaseEditor::dropTable()
         */
        public function dropTable($tableName) {
                $sql = "DROP TABLE IF EXISTS ".$tableName;
@@ -96,7 +96,7 @@ class MySQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::addColumn()
+        * @see wcf\system\database\editor\DatabaseEditor::addColumn()
         */
        public function addColumn($tableName, $columnName, $columnData) {
                $sql = "ALTER TABLE ".$tableName." ADD COLUMN ".$this->buildColumnDefinition($columnName, $columnData);
@@ -105,7 +105,7 @@ class MySQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::alterColumn()
+        * @see wcf\system\database\editor\DatabaseEditor::alterColumn()
         */
        public function alterColumn($tableName, $oldColumnName, $newColumnName, $newColumnData) {
                $sql = "ALTER TABLE ".$tableName." CHANGE COLUMN ".$oldColumnName." ".$this->buildColumnDefinition($newColumnName, $newColumnData);
@@ -114,7 +114,7 @@ class MySQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::dropColumn()
+        * @see wcf\system\database\editor\DatabaseEditor::dropColumn()
         */
        public function dropColumn($tableName, $columnName) {
                $sql = "ALTER TABLE ".$tableName." DROP COLUMN ".$columnName;
@@ -123,7 +123,7 @@ class MySQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::addIndex()
+        * @see wcf\system\database\editor\DatabaseEditor::addIndex()
         */
        public function addIndex($tableName, $indexName, $indexData) {
                $sql = "ALTER TABLE ".$tableName." ADD ".$this->buildIndexDefinition($indexName, $indexData);
@@ -132,7 +132,7 @@ class MySQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::addIndex()
+        * @see wcf\system\database\editor\DatabaseEditor::addIndex()
         */
        public function addForeignKey($tableName, $indexName, $indexData) {
                $sql = "ALTER TABLE ".$tableName." ADD";
@@ -157,7 +157,7 @@ class MySQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::dropIndex()
+        * @see wcf\system\database\editor\DatabaseEditor::dropIndex()
         */
        public function dropIndex($tableName, $indexName) {
                $sql = "ALTER TABLE ".$tableName." DROP INDEX ".$indexName;
@@ -166,7 +166,7 @@ class MySQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::dropForeignKey()
+        * @see wcf\system\database\editor\DatabaseEditor::dropForeignKey()
         */
        public function dropForeignKey($tableName, $indexName) {
                $sql = "ALTER TABLE ".$tableName." DROP FOREIGN KEY ".$indexName;
index c511c96b99da76c4ad1c4c8e64578be47c7e6512..c9600ba11ef26e1558267cb81ee2984d64e141ff 100644 (file)
@@ -15,7 +15,7 @@ use wcf\util\ArrayUtil;
  */
 class PostgreSQLDatabaseEditor extends DatabaseEditor {
        /**
-        * @see DatabaseEditor::getTableNames()
+        * @see wcf\system\database\editor\DatabaseEditor::getTableNames()
         */
        public function getTableNames() {
                $existingTables = array();
@@ -32,7 +32,7 @@ class PostgreSQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::getColumns()
+        * @see wcf\system\database\editor\DatabaseEditor::getColumns()
         */
        public function getColumns($tableName) {
                $columns = array();
@@ -52,7 +52,7 @@ class PostgreSQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::getIndices()
+        * @see wcf\system\database\editor\DatabaseEditor::getIndices()
         */
        public function getIndices($tableName) {
                $indices = array();
@@ -103,7 +103,7 @@ class PostgreSQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::createTable()
+        * @see wcf\system\database\editor\DatabaseEditor::createTable()
         */
        public function createTable($tableName, $columns, $indices = array()) {
                $columnDefinition = $indexDefinition = '';
@@ -140,7 +140,7 @@ class PostgreSQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::dropTable()
+        * @see wcf\system\database\editor\DatabaseEditor::dropTable()
         */
        public function dropTable($tableName) {
                $sql = "DROP TABLE IF EXISTS ".$tableName." CASCADE";
@@ -149,7 +149,7 @@ class PostgreSQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::addColumn()
+        * @see wcf\system\database\editor\DatabaseEditor::addColumn()
         */
        public function addColumn($tableName, $columnName, $columnData) {
                $sql = "ALTER TABLE ".$tableName." ADD COLUMN ".$this->buildColumnDefinition($columnName, $columnData);
@@ -158,7 +158,7 @@ class PostgreSQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::alterColumn()
+        * @see wcf\system\database\editor\DatabaseEditor::alterColumn()
         */
        public function alterColumn($tableName, $oldColumnName, $newColumnName, $newColumnData) {
                // change column name if necessary
@@ -208,7 +208,7 @@ class PostgreSQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::dropColumn()
+        * @see wcf\system\database\editor\DatabaseEditor::dropColumn()
         */
        public function dropColumn($tableName, $columnName) {
                $sql = "ALTER TABLE ".$tableName." DROP COLUMN ".$columnName." CASCADE";
@@ -217,7 +217,7 @@ class PostgreSQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::addIndex()
+        * @see wcf\system\database\editor\DatabaseEditor::addIndex()
         */
        public function addIndex($tableName, $indexName, $indexData) {
                if ($indexData['type'] == 'FULLTEXT') {
@@ -241,7 +241,7 @@ class PostgreSQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::addIndex()
+        * @see wcf\system\database\editor\DatabaseEditor::addIndex()
         */
        public function addForeignKey($tableName, $indexName, $indexData) {
                $sql = "ALTER TABLE ".$tableName." ADD";
@@ -266,7 +266,7 @@ class PostgreSQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::dropIndex()
+        * @see wcf\system\database\editor\DatabaseEditor::dropIndex()
         */
        public function dropIndex($tableName, $indexName) {
                $sql = "DROP INDEX IF EXISTS ".$tableName."_".$indexName."_key CASCADE";
@@ -275,7 +275,7 @@ class PostgreSQLDatabaseEditor extends DatabaseEditor {
        }
        
        /**
-        * @see DatabaseEditor::dropForeignKey()
+        * @see wcf\system\database\editor\DatabaseEditor::dropForeignKey()
         */
        public function dropForeignKey($tableName, $indexName) {
                // TODO: implement this function
index 9ea72169dad4335d27173b90d9218a7760b49f11..57c7a1cd9273d8b81b9aa3210c3d251f56307111 100644 (file)
@@ -21,7 +21,7 @@ class IllegalLinkException extends NamedUserException {
        }
        
        /**
-        * @see NamedUserException::show();
+        * @see wcf\system\exception\NamedUserException::show();
         */
        public function show() {
                @header('HTTP/1.0 404 Not Found');
index f4abaa35c32754110b6bc8c2dbb4b5ae233012e5..309018118e8d9f2161eb1d65ecd425c936410e8a 100644 (file)
@@ -13,7 +13,7 @@ namespace wcf\system\mail;
  */
 class PHPMailSender extends MailSender {
        /**
-        * @see MailSender::sendMail()
+        * @see wcf\system\mail\MailSender::sendMail()
         */
        public function sendMail(Mail $mail) {
                if (MAIL_USE_F_PARAM) return @mb_send_mail($mail->getToString(), $mail->getSubject(), $mail->getBody(), $mail->getHeader(), '-f'.MAIL_FROM_ADDRESS);
index f96469e66ebbe171976d65105cee5940cb0d7834..0be21ab013463e2f76c5878413a32c04998a44f0 100644 (file)
@@ -101,7 +101,7 @@ class SMTPMailSender extends MailSender {
        }
        
        /**
-        * @see MailSender::sendMail()
+        * @see wcf\system\mail\MailSender::sendMail()
         */
        public function sendMail(Mail $mail) {
                $this->recipients = array();
index 29b046d4ba26e1a8362ccd8b60e37a4b030c9c81..d09fc74b69149c8b60830f92efc74d8835ae6671 100644 (file)
@@ -38,7 +38,7 @@ abstract class TreeMenu extends SingletonFactory {
        public $menuItems = null;
 
        /**
-        * @see SingletonFactory::init()
+        * @see wcf\system\SingletonFactory::init()
         */
        protected function init() {
                // get menu items from cache
index 0f22d036f866be65ea705c0534acd25e0c1e124e..8e15796d706cda7ab641552ccef25fb02c220366 100644 (file)
@@ -15,7 +15,7 @@ use wcf\system\cache\CacheHandler;
  */
 class ACPMenu extends TreeMenu {
        /**
-        * @see TreeMenu::loadCache()
+        * @see wcf\system\menu\TreeMenu::loadCache()
         */
        protected function loadCache() {
                parent::loadCache();
index 0ccdc63284faaff90850d2af0a4d7e65a6c2ba14..ac14a6715b2c423ee44e36551fb844d95de9ac3a 100644 (file)
@@ -16,7 +16,7 @@ use wcf\system\option\OptionTypeText;
  */
 class OptionTypePassword extends OptionTypeText {
        /**
-        * @see OptionTypeText::$inputType
+        * @see wcf\system\option\OptionTypeText::$inputType
         */
        protected $inputType = 'password';
        
index af9cbe92cb1a933d76abb28ab13be64d56361f73..ab6691ca8f9821708f11918796846d08119326a9 100644 (file)
@@ -67,7 +67,7 @@ class PackageUninstallationDispatcher extends PackageInstallationDispatcher {
        }
        
        /**
-        * @see PackageInstallationDispatcher::executePIP()
+        * @see wcf\system\package\PackageInstallationDispatcher::executePIP()
         */
        protected function executePIP(array $nodeData) {
                $pip = new $nodeData['className']($this);
index fbf9833b4301df9effea67e4a33975a9f0732f9b..d1ed5c27fac181d8a3a136621dc7bebca26ae20c 100644 (file)
@@ -14,17 +14,17 @@ use wcf\util\HeaderUtil;
  */
 class SessionFactory extends ACPSessionFactory {
        /**
-        * @see ACPSessionFactory::$sessionEditor
+        * @see wcf\system\session\ACPSessionFactory::$sessionEditor
         */     
        protected $sessionEditor = 'wcf\data\session\SessionEditor';
        
        /**
-        * @see ACPSessionFactory::$sessionDataEditor
+        * @see wcf\system\session\ACPSessionFactory::$sessionDataEditor
         */
        protected $sessionDataEditor = 'wcf\data\session\data\SessionDataEditor';
        
        /**
-        * @see ACPSessionFactory::readSessionID()
+        * @see wcf\system\session\ACPSessionFactory::readSessionID()
         */     
        protected function readSessionID() {
                $sessionID = parent::readSessionID();
@@ -38,7 +38,7 @@ class SessionFactory extends ACPSessionFactory {
        }
        
        /**
-        * @see ACPSessionFactory::init()
+        * @see wcf\system\session\ACPSessionFactory::init()
         */     
        protected function init() {
                $usesCookies = true;
index ce8f524eb3231c82546f31f8e6839e86630d97c1..86c4fdac08359f877c7da22a7b9647e4140a299e 100644 (file)
@@ -400,7 +400,7 @@ class SessionHandler extends SingletonFactory {
        /**
         * Checks the requested permission, throws a PermissionDeniedException
         * if the permission is false.
-        * @see SessionHandler::getPermission()
+        * @see wcf\system\session\SessionHandler::getPermission()
         */
        public function checkPermission(array $permissions) {
                foreach ($permissions as $permission) {
index b101847279ad48ebdb41c35358e68201f45e430c..8c3bb4460a7f09001dd045824a5d4ccc4689e6be 100644 (file)
@@ -14,12 +14,12 @@ namespace wcf\system\template;
  */
 class ACPTemplateEngine extends TemplateEngine {
        /**
-        * @see TemplateEngine::$environment
+        * @see wcf\system\template\TemplateEngine::$environment
         */
        protected $environment = 'admin';
        
        /**
-        * @see TemplateEngine::__construct()
+        * @see wcf\system\template\TemplateEngine::__construct()
         */
        protected function init() {
                parent::init();
@@ -46,7 +46,7 @@ class ACPTemplateEngine extends TemplateEngine {
        /**
         * Template groups are not supported by acp template engine.
         * 
-        * @see TemplateEngine::setTemplateGroupID()
+        * @see wcf\system\template\TemplateEngine::setTemplateGroupID()
         */
        public final function setTemplateGroupID($templateGroupID) {
                $this->templateGroupID = 0;
index 5d46a4d3f2e5c506b78bef81f5ee9bf50fd08f57..5dab590449d44083b67ccb1cdc7c8d1abf6c127c 100644 (file)
@@ -15,7 +15,7 @@ class SetupTemplate extends Template {
        protected $templatePath = '';
        
        /**
-        * @see Template::setTemplatePaths()
+        * @see wcf\system\template\Template::setTemplatePaths()
         */
        public function setTemplatePaths($templatePaths) {
                if (is_array($templatePaths)) $this->templatePath = array_shift($templatePaths);
@@ -23,33 +23,33 @@ class SetupTemplate extends Template {
        }
        
        /**
-        * @see Template::loadTemplateStructure()
+        * @see wcf\system\template\Template::loadTemplateStructure()
         */
        protected function loadTemplateStructure() {}
        
        /**
-        * @see Template::getSourceFilename()
+        * @see wcf\system\template\Template::getSourceFilename()
         */
        public function getSourceFilename($templateName, $packageID = 0) {
                return $this->templatePath.TMP_FILE_PREFIX.$templateName.'.tpl';
        }
        
        /**
-        * @see Template::getCompiledFilename()
+        * @see wcf\system\template\Template::getCompiledFilename()
         */
        public function getCompiledFilename($templateName, $packageID = 0) {
                return $this->compileDir.TMP_FILE_PREFIX.$this->languageID.'_'.$templateName.'.php';
        }
        
        /**
-        * @see Template::getPluginFilename()
+        * @see wcf\system\template\Template::getPluginFilename()
         */
        public function getPluginFilename($type, $tag) {
                return $this->pluginDir.TMP_FILE_PREFIX.'TemplatePlugin'.StringUtil::firstCharToUpperCase(StringUtil::toLowerCase($type)).StringUtil::firstCharToUpperCase(StringUtil::toLowerCase($tag)).'.class.php';
        }
        
        /**
-        * @see Template::getCompiler()
+        * @see wcf\system\template\Template::getCompiler()
         */
        protected function getCompiler() {
                return new TemplateCompiler($this);
index e8a0ef0bfcfff185863db09350045fd575a8a729..ecc0987fface584bace06a152fe003f985c1207f 100644 (file)
@@ -14,26 +14,26 @@ use wcf\system\exception\SystemException;
  */
 class SetupTemplateEngine extends TemplateEngine {
        /**
-        * @see TemplateEngine::loadTemplateGroupCache()
+        * @see wcf\system\template\TemplateEngine::loadTemplateGroupCache()
         */
        protected function loadTemplateGroupCache() {}
        
        /**
-        * @see TemplateEngine::getSourceFilename()
+        * @see wcf\system\template\TemplateEngine::getSourceFilename()
         */
        public function getSourceFilename($templateName, $packageID) {
                return $this->templatePaths[PACKAGE_ID].'setup/template/'.$templateName.'.tpl';
        }
        
        /**
-        * @see TemplateEngine::getCompiledFilename()
+        * @see wcf\system\template\TemplateEngine::getCompiledFilename()
         */
        public function getCompiledFilename($templateName, $packageID) {
                return $this->compileDir.'setup/template/compiled/'.$this->languageID.'_'.$templateName.'.php';
        }
        
        /**
-        * @see TemplateEngine::getPackageID()
+        * @see wcf\system\template\TemplateEngine::getPackageID()
         */
        public function getPackageID($templateName, $packageID) {
                $path = $this->templatePaths[PACKAGE_ID].'setup/template/'.$templateName.'.tpl';
@@ -45,7 +45,7 @@ class SetupTemplateEngine extends TemplateEngine {
        }
        
        /**
-        * @see TemplateEngine::getCompiler()
+        * @see wcf\system\template\TemplateEngine::getCompiler()
         */
        protected function getCompiler() {
                return new TemplateCompiler($this);
index 710b84d6ef1f3525a4acb937b6fc5582afbe032d..1c22bfaf59f45d4887426cf0b89bfdeb0f68a785 100644 (file)
@@ -113,7 +113,7 @@ class TemplateEngine extends SingletonFactory {
        /**
         * Creates a new instance of TemplateEngine.
         * 
-        * @see TemplateEngine::getInstance()
+        * @see wcf\system\template\TemplateEngine::getInstance()
         */
        protected function init() {
                $this->templatePaths = array(1 => WCF_DIR.'templates/');
index a6bd7f8a2e25f5fe35fba0c1895164a7dca12c38..6a56d13af4eefedae592446dc18eff625e289252 100644 (file)
@@ -76,7 +76,7 @@ class TemplatePluginFunctionHtmlcheckboxes implements ITemplatePluginFunction {
        
        /**
         * Executes StringUtil::encodeHTML on the given text if disableEncoding is false.
-        * @see StringUtil::encodeHTML()
+        * @see wcf\util\StringUtil::encodeHTML()
         */
        protected function encodeHTML($text) {
                if (!$this->disableEncoding) {
index 197ea8ad091e2151cb14fc86dd05740f18859769..a1e53544702915be15425f5854a91c163241aae2 100644 (file)
@@ -163,7 +163,7 @@ abstract class CronjobUtil {
         * command will be run when either field matches the current time. -- crontab(5)
         * 
         * @param       array           $values
-        * @see         CronjobUtil::getDom()
+        * @see         wcf\util\CronjobUtil::getDom()
         */
        protected static function calculateDay(array &$values) {
                $addAnDay = self::calculateHour($values, self::$timeBase);
index f8043ae9987a28a4c40bbc32b5cd2639c2053e24..8d93d2888de3280c04ddb622612b647a9de6e688 100644 (file)
@@ -75,7 +75,7 @@ class DirectoryUtil {
         *
         * @param       string                          $directory      directory path
         * @param       boolean                         $recursive      created a recursive directory iterator
-        * @see         DirectoryUtil::getInstance()
+        * @see         wcf\util\DirectoryUtil::getInstance()
         */
        protected function __construct($directory, $recursive = true) {
                $this->directory = $directory;
@@ -91,7 +91,7 @@ class DirectoryUtil {
        }
 
        /**
-        * @see         DirectoryUtil::getInstance()
+        * @see         wcf\util\DirectoryUtil::getInstance()
         */
        private final function __clone() {}
 
index e2dfb690df2c3e0eb44dd35e64170e6ada343f8b..a6201183388cbee60cc5cda6c4ff80c100128c5a 100644 (file)
@@ -151,7 +151,7 @@ class XML {
        /**
         * Reads errors from libxml since be bypassed built-in error handler.
         * 
-        * @see         XML::__construct()
+        * @see         wcf\util\XML::__construct()
         * @return      array<array>
         */
        protected function pollErrors() {