From 78587b7986cda3fa22ddf30f0ae1816d8c134080 Mon Sep 17 00:00:00 2001 From: Okan Esen Date: Mon, 1 Aug 2011 01:50:12 +0200 Subject: [PATCH] Added some documentation fixes. --- .../files/lib/acp/form/UserEditForm.class.php | 8 +++---- .../lib/acp/form/UserGroupAddForm.class.php | 4 ++-- .../lib/acp/form/UserGroupEditForm.class.php | 2 +- .../data/DatabaseObjectDecorator.class.php | 4 ++-- .../session/data/ACPSessionDataList.class.php | 2 +- .../lib/data/language/SetupLanguage.class.php | 2 +- .../UserOptionCategoryEditor.class.php | 2 +- .../install/files/lib/system/WCF.class.php | 2 +- .../install/files/lib/system/WCFACP.class.php | 2 +- .../lib/system/auth/UserAuthDefault.class.php | 8 +++---- .../system/database/MySQLDatabase.class.php | 10 ++++---- .../database/PostgreSQLDatabase.class.php | 12 +++++----- .../editor/MySQLDatabaseEditor.class.php | 24 +++++++++---------- .../editor/PostgreSQLDatabaseEditor.class.php | 24 +++++++++---------- .../exception/IllegalLinkException.class.php | 2 +- .../lib/system/mail/PHPMailSender.class.php | 2 +- .../lib/system/mail/SMTPMailSender.class.php | 2 +- .../files/lib/system/menu/TreeMenu.class.php | 2 +- .../lib/system/menu/acp/ACPMenu.class.php | 2 +- .../option/OptionTypePassword.class.php | 2 +- .../PackageUninstallationDispatcher.class.php | 2 +- .../system/session/SessionFactory.class.php | 8 +++---- .../system/session/SessionHandler.class.php | 2 +- .../template/ACPTemplateEngine.class.php | 6 ++--- .../system/template/SetupTemplate.class.php | 12 +++++----- .../template/SetupTemplateEngine.class.php | 10 ++++---- .../system/template/TemplateEngine.class.php | 2 +- ...latePluginFunctionHtmlcheckboxes.class.php | 2 +- .../files/lib/util/CronjobUtil.class.php | 2 +- .../files/lib/util/DirectoryUtil.class.php | 4 ++-- wcfsetup/install/files/lib/util/XML.class.php | 2 +- 31 files changed, 85 insertions(+), 85 deletions(-) diff --git a/wcfsetup/install/files/lib/acp/form/UserEditForm.class.php b/wcfsetup/install/files/lib/acp/form/UserEditForm.class.php index 29dcb0aa99..29359b3170 100755 --- a/wcfsetup/install/files/lib/acp/form/UserEditForm.class.php +++ b/wcfsetup/install/files/lib/acp/form/UserEditForm.class.php @@ -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)) { diff --git a/wcfsetup/install/files/lib/acp/form/UserGroupAddForm.class.php b/wcfsetup/install/files/lib/acp/form/UserGroupAddForm.class.php index a0b581735c..fbb6c10cef 100755 --- a/wcfsetup/install/files/lib/acp/form/UserGroupAddForm.class.php +++ b/wcfsetup/install/files/lib/acp/form/UserGroupAddForm.class.php @@ -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])) { diff --git a/wcfsetup/install/files/lib/acp/form/UserGroupEditForm.class.php b/wcfsetup/install/files/lib/acp/form/UserGroupEditForm.class.php index af158470a2..dcf95a7cab 100755 --- a/wcfsetup/install/files/lib/acp/form/UserGroupEditForm.class.php +++ b/wcfsetup/install/files/lib/acp/form/UserGroupEditForm.class.php @@ -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'; diff --git a/wcfsetup/install/files/lib/data/DatabaseObjectDecorator.class.php b/wcfsetup/install/files/lib/data/DatabaseObjectDecorator.class.php index 09da8621b3..a57874050c 100644 --- a/wcfsetup/install/files/lib/data/DatabaseObjectDecorator.class.php +++ b/wcfsetup/install/files/lib/data/DatabaseObjectDecorator.class.php @@ -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); diff --git a/wcfsetup/install/files/lib/data/acp/session/data/ACPSessionDataList.class.php b/wcfsetup/install/files/lib/data/acp/session/data/ACPSessionDataList.class.php index 2ba603bc83..147970b111 100644 --- a/wcfsetup/install/files/lib/data/acp/session/data/ACPSessionDataList.class.php +++ b/wcfsetup/install/files/lib/data/acp/session/data/ACPSessionDataList.class.php @@ -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'; } diff --git a/wcfsetup/install/files/lib/data/language/SetupLanguage.class.php b/wcfsetup/install/files/lib/data/language/SetupLanguage.class.php index 4690e66f57..05753dd791 100644 --- a/wcfsetup/install/files/lib/data/language/SetupLanguage.class.php +++ b/wcfsetup/install/files/lib/data/language/SetupLanguage.class.php @@ -28,7 +28,7 @@ class SetupLanguage extends Language { } /** - * @see Language::loadCategory() + * @see wcf\data\language\Language::loadCategory() */ protected function loadCategory($category) { return false; diff --git a/wcfsetup/install/files/lib/data/user/option/category/UserOptionCategoryEditor.class.php b/wcfsetup/install/files/lib/data/user/option/category/UserOptionCategoryEditor.class.php index f2cf896444..9717583a25 100644 --- a/wcfsetup/install/files/lib/data/user/option/category/UserOptionCategoryEditor.class.php +++ b/wcfsetup/install/files/lib/data/user/option/category/UserOptionCategoryEditor.class.php @@ -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'; diff --git a/wcfsetup/install/files/lib/system/WCF.class.php b/wcfsetup/install/files/lib/system/WCF.class.php index a7c190f542..101352ccba 100644 --- a/wcfsetup/install/files/lib/system/WCF.class.php +++ b/wcfsetup/install/files/lib/system/WCF.class.php @@ -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 diff --git a/wcfsetup/install/files/lib/system/WCFACP.class.php b/wcfsetup/install/files/lib/system/WCFACP.class.php index e8c8e1f328..8be508a9a6 100644 --- a/wcfsetup/install/files/lib/system/WCFACP.class.php +++ b/wcfsetup/install/files/lib/system/WCFACP.class.php @@ -77,7 +77,7 @@ class WCFACP extends WCF { } /** - * @see WCF::assignDefaultTemplateVariables() + * @see wcf\system\WCF::assignDefaultTemplateVariables() */ protected function assignDefaultTemplateVariables() { parent::assignDefaultTemplateVariables(); diff --git a/wcfsetup/install/files/lib/system/auth/UserAuthDefault.class.php b/wcfsetup/install/files/lib/system/auth/UserAuthDefault.class.php index 7fac6e7e88..310938a926 100644 --- a/wcfsetup/install/files/lib/system/auth/UserAuthDefault.class.php +++ b/wcfsetup/install/files/lib/system/auth/UserAuthDefault.class.php @@ -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; diff --git a/wcfsetup/install/files/lib/system/database/MySQLDatabase.class.php b/wcfsetup/install/files/lib/system/database/MySQLDatabase.class.php index 06a07e0ef5..8213b6fb61 100644 --- a/wcfsetup/install/files/lib/system/database/MySQLDatabase.class.php +++ b/wcfsetup/install/files/lib/system/database/MySQLDatabase.class.php @@ -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(); diff --git a/wcfsetup/install/files/lib/system/database/PostgreSQLDatabase.class.php b/wcfsetup/install/files/lib/system/database/PostgreSQLDatabase.class.php index 2ce6b6efa2..d3569366ba 100644 --- a/wcfsetup/install/files/lib/system/database/PostgreSQLDatabase.class.php +++ b/wcfsetup/install/files/lib/system/database/PostgreSQLDatabase.class.php @@ -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 diff --git a/wcfsetup/install/files/lib/system/database/editor/MySQLDatabaseEditor.class.php b/wcfsetup/install/files/lib/system/database/editor/MySQLDatabaseEditor.class.php index a70f50fd3a..c9678debde 100644 --- a/wcfsetup/install/files/lib/system/database/editor/MySQLDatabaseEditor.class.php +++ b/wcfsetup/install/files/lib/system/database/editor/MySQLDatabaseEditor.class.php @@ -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; diff --git a/wcfsetup/install/files/lib/system/database/editor/PostgreSQLDatabaseEditor.class.php b/wcfsetup/install/files/lib/system/database/editor/PostgreSQLDatabaseEditor.class.php index c511c96b99..c9600ba11e 100644 --- a/wcfsetup/install/files/lib/system/database/editor/PostgreSQLDatabaseEditor.class.php +++ b/wcfsetup/install/files/lib/system/database/editor/PostgreSQLDatabaseEditor.class.php @@ -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 diff --git a/wcfsetup/install/files/lib/system/exception/IllegalLinkException.class.php b/wcfsetup/install/files/lib/system/exception/IllegalLinkException.class.php index 9ea72169da..57c7a1cd92 100644 --- a/wcfsetup/install/files/lib/system/exception/IllegalLinkException.class.php +++ b/wcfsetup/install/files/lib/system/exception/IllegalLinkException.class.php @@ -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'); diff --git a/wcfsetup/install/files/lib/system/mail/PHPMailSender.class.php b/wcfsetup/install/files/lib/system/mail/PHPMailSender.class.php index f4abaa35c3..309018118e 100644 --- a/wcfsetup/install/files/lib/system/mail/PHPMailSender.class.php +++ b/wcfsetup/install/files/lib/system/mail/PHPMailSender.class.php @@ -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); diff --git a/wcfsetup/install/files/lib/system/mail/SMTPMailSender.class.php b/wcfsetup/install/files/lib/system/mail/SMTPMailSender.class.php index f96469e66e..0be21ab013 100644 --- a/wcfsetup/install/files/lib/system/mail/SMTPMailSender.class.php +++ b/wcfsetup/install/files/lib/system/mail/SMTPMailSender.class.php @@ -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(); diff --git a/wcfsetup/install/files/lib/system/menu/TreeMenu.class.php b/wcfsetup/install/files/lib/system/menu/TreeMenu.class.php index 29b046d4ba..d09fc74b69 100644 --- a/wcfsetup/install/files/lib/system/menu/TreeMenu.class.php +++ b/wcfsetup/install/files/lib/system/menu/TreeMenu.class.php @@ -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 diff --git a/wcfsetup/install/files/lib/system/menu/acp/ACPMenu.class.php b/wcfsetup/install/files/lib/system/menu/acp/ACPMenu.class.php index 0f22d036f8..8e15796d70 100644 --- a/wcfsetup/install/files/lib/system/menu/acp/ACPMenu.class.php +++ b/wcfsetup/install/files/lib/system/menu/acp/ACPMenu.class.php @@ -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(); diff --git a/wcfsetup/install/files/lib/system/option/OptionTypePassword.class.php b/wcfsetup/install/files/lib/system/option/OptionTypePassword.class.php index 0ccdc63284..ac14a6715b 100644 --- a/wcfsetup/install/files/lib/system/option/OptionTypePassword.class.php +++ b/wcfsetup/install/files/lib/system/option/OptionTypePassword.class.php @@ -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'; diff --git a/wcfsetup/install/files/lib/system/package/PackageUninstallationDispatcher.class.php b/wcfsetup/install/files/lib/system/package/PackageUninstallationDispatcher.class.php index af9cbe92cb..ab6691ca8f 100644 --- a/wcfsetup/install/files/lib/system/package/PackageUninstallationDispatcher.class.php +++ b/wcfsetup/install/files/lib/system/package/PackageUninstallationDispatcher.class.php @@ -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); diff --git a/wcfsetup/install/files/lib/system/session/SessionFactory.class.php b/wcfsetup/install/files/lib/system/session/SessionFactory.class.php index fbf9833b43..d1ed5c27fa 100644 --- a/wcfsetup/install/files/lib/system/session/SessionFactory.class.php +++ b/wcfsetup/install/files/lib/system/session/SessionFactory.class.php @@ -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; diff --git a/wcfsetup/install/files/lib/system/session/SessionHandler.class.php b/wcfsetup/install/files/lib/system/session/SessionHandler.class.php index ce8f524eb3..86c4fdac08 100644 --- a/wcfsetup/install/files/lib/system/session/SessionHandler.class.php +++ b/wcfsetup/install/files/lib/system/session/SessionHandler.class.php @@ -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) { diff --git a/wcfsetup/install/files/lib/system/template/ACPTemplateEngine.class.php b/wcfsetup/install/files/lib/system/template/ACPTemplateEngine.class.php index b101847279..8c3bb4460a 100644 --- a/wcfsetup/install/files/lib/system/template/ACPTemplateEngine.class.php +++ b/wcfsetup/install/files/lib/system/template/ACPTemplateEngine.class.php @@ -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; diff --git a/wcfsetup/install/files/lib/system/template/SetupTemplate.class.php b/wcfsetup/install/files/lib/system/template/SetupTemplate.class.php index 5d46a4d3f2..5dab590449 100644 --- a/wcfsetup/install/files/lib/system/template/SetupTemplate.class.php +++ b/wcfsetup/install/files/lib/system/template/SetupTemplate.class.php @@ -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); diff --git a/wcfsetup/install/files/lib/system/template/SetupTemplateEngine.class.php b/wcfsetup/install/files/lib/system/template/SetupTemplateEngine.class.php index e8a0ef0bfc..ecc0987ffa 100644 --- a/wcfsetup/install/files/lib/system/template/SetupTemplateEngine.class.php +++ b/wcfsetup/install/files/lib/system/template/SetupTemplateEngine.class.php @@ -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); diff --git a/wcfsetup/install/files/lib/system/template/TemplateEngine.class.php b/wcfsetup/install/files/lib/system/template/TemplateEngine.class.php index 710b84d6ef..1c22bfaf59 100644 --- a/wcfsetup/install/files/lib/system/template/TemplateEngine.class.php +++ b/wcfsetup/install/files/lib/system/template/TemplateEngine.class.php @@ -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/'); diff --git a/wcfsetup/install/files/lib/system/template/plugin/TemplatePluginFunctionHtmlcheckboxes.class.php b/wcfsetup/install/files/lib/system/template/plugin/TemplatePluginFunctionHtmlcheckboxes.class.php index a6bd7f8a2e..6a56d13af4 100644 --- a/wcfsetup/install/files/lib/system/template/plugin/TemplatePluginFunctionHtmlcheckboxes.class.php +++ b/wcfsetup/install/files/lib/system/template/plugin/TemplatePluginFunctionHtmlcheckboxes.class.php @@ -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) { diff --git a/wcfsetup/install/files/lib/util/CronjobUtil.class.php b/wcfsetup/install/files/lib/util/CronjobUtil.class.php index 197ea8ad09..a1e5354470 100644 --- a/wcfsetup/install/files/lib/util/CronjobUtil.class.php +++ b/wcfsetup/install/files/lib/util/CronjobUtil.class.php @@ -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); diff --git a/wcfsetup/install/files/lib/util/DirectoryUtil.class.php b/wcfsetup/install/files/lib/util/DirectoryUtil.class.php index f8043ae998..8d93d2888d 100644 --- a/wcfsetup/install/files/lib/util/DirectoryUtil.class.php +++ b/wcfsetup/install/files/lib/util/DirectoryUtil.class.php @@ -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() {} diff --git a/wcfsetup/install/files/lib/util/XML.class.php b/wcfsetup/install/files/lib/util/XML.class.php index e2dfb690df..a620118338 100644 --- a/wcfsetup/install/files/lib/util/XML.class.php +++ b/wcfsetup/install/files/lib/util/XML.class.php @@ -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 */ protected function pollErrors() { -- 2.20.1