From 09f5f8ef0b22544457b7a598c195c6ecc7e9d086 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Thu, 17 Oct 2013 00:04:24 +0200 Subject: [PATCH] Changed class name references --- .../system/exporter/MyBB16xExporter.class.php | 14 +++++++------- .../system/exporter/PhpBB3xExporter.class.php | 14 +++++++------- .../lib/system/exporter/SMF2xExporter.class.php | 14 +++++++------- .../lib/system/exporter/WBB2xExporter.class.php | 12 ++++++------ .../lib/system/exporter/WBB3xExporter.class.php | 16 ++++++++-------- 5 files changed, 35 insertions(+), 35 deletions(-) diff --git a/files/lib/system/exporter/MyBB16xExporter.class.php b/files/lib/system/exporter/MyBB16xExporter.class.php index b923cad..5d37d0f 100644 --- a/files/lib/system/exporter/MyBB16xExporter.class.php +++ b/files/lib/system/exporter/MyBB16xExporter.class.php @@ -41,7 +41,7 @@ class MyBB16xExporter extends AbstractExporter { protected $boardCache = array(); /** - * @see wcf\system\exporter\AbstractExporter::$methods + * @see \wcf\system\exporter\AbstractExporter::$methods */ protected $methods = array( 'com.woltlab.wcf.user' => 'Users', @@ -70,7 +70,7 @@ class MyBB16xExporter extends AbstractExporter { ); /** - * @see wcf\system\exporter\AbstractExporter::$limits + * @see \wcf\system\exporter\AbstractExporter::$limits */ protected $limits = array( 'com.woltlab.wcf.user' => 200, @@ -79,7 +79,7 @@ class MyBB16xExporter extends AbstractExporter { ); /** - * @see wcf\system\exporter\IExporter::getSupportedData() + * @see \wcf\system\exporter\IExporter::getSupportedData() */ public function getSupportedData() { return array( @@ -106,7 +106,7 @@ class MyBB16xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::validateDatabaseAccess() + * @see \wcf\system\exporter\IExporter::validateDatabaseAccess() */ public function validateDatabaseAccess() { parent::validateDatabaseAccess(); @@ -123,7 +123,7 @@ class MyBB16xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::validateFileAccess() + * @see \wcf\system\exporter\IExporter::validateFileAccess() */ public function validateFileAccess() { if (in_array('com.woltlab.wcf.user.avatar', $this->selectedData) || in_array('com.woltlab.wbb.attachment', $this->selectedData) || in_array('com.woltlab.wcf.smiley', $this->selectedData)) { @@ -134,7 +134,7 @@ class MyBB16xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::getQueue() + * @see \wcf\system\exporter\IExporter::getQueue() */ public function getQueue() { $queue = array(); @@ -186,7 +186,7 @@ class MyBB16xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::getDefaultDatabasePrefix() + * @see \wcf\system\exporter\IExporter::getDefaultDatabasePrefix() */ public function getDefaultDatabasePrefix() { return 'mybb_'; diff --git a/files/lib/system/exporter/PhpBB3xExporter.class.php b/files/lib/system/exporter/PhpBB3xExporter.class.php index 60b64ae..1ee7518 100644 --- a/files/lib/system/exporter/PhpBB3xExporter.class.php +++ b/files/lib/system/exporter/PhpBB3xExporter.class.php @@ -61,7 +61,7 @@ class PhpBB3xExporter extends AbstractExporter { protected $boardCache = array(); /** - * @see wcf\system\exporter\AbstractExporter::$methods + * @see \wcf\system\exporter\AbstractExporter::$methods */ protected $methods = array( 'com.woltlab.wcf.user' => 'Users', @@ -92,7 +92,7 @@ class PhpBB3xExporter extends AbstractExporter { ); /** - * @see wcf\system\exporter\AbstractExporter::$limits + * @see \wcf\system\exporter\AbstractExporter::$limits */ protected $limits = array( 'com.woltlab.wcf.user' => 200, @@ -104,7 +104,7 @@ class PhpBB3xExporter extends AbstractExporter { ); /** - * @see wcf\system\exporter\IExporter::getSupportedData() + * @see \wcf\system\exporter\IExporter::getSupportedData() */ public function getSupportedData() { return array( @@ -130,7 +130,7 @@ class PhpBB3xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::validateDatabaseAccess() + * @see \wcf\system\exporter\IExporter::validateDatabaseAccess() */ public function validateDatabaseAccess() { parent::validateDatabaseAccess(); @@ -141,7 +141,7 @@ class PhpBB3xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::validateFileAccess() + * @see \wcf\system\exporter\IExporter::validateFileAccess() */ public function validateFileAccess() { if (in_array('com.woltlab.wcf.user.avatar', $this->selectedData) || in_array('com.woltlab.wbb.attachment', $this->selectedData) || in_array('com.woltlab.wcf.smiley', $this->selectedData)) { @@ -152,7 +152,7 @@ class PhpBB3xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::getQueue() + * @see \wcf\system\exporter\IExporter::getQueue() */ public function getQueue() { $queue = array(); @@ -204,7 +204,7 @@ class PhpBB3xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::getDefaultDatabasePrefix() + * @see \wcf\system\exporter\IExporter::getDefaultDatabasePrefix() */ public function getDefaultDatabasePrefix() { return 'phpbb_'; diff --git a/files/lib/system/exporter/SMF2xExporter.class.php b/files/lib/system/exporter/SMF2xExporter.class.php index 5d56c9c..c31bfb5 100644 --- a/files/lib/system/exporter/SMF2xExporter.class.php +++ b/files/lib/system/exporter/SMF2xExporter.class.php @@ -49,7 +49,7 @@ class SMF2xExporter extends AbstractExporter { protected $boardCache = array(); /** - * @see wcf\system\exporter\AbstractExporter::$methods + * @see \wcf\system\exporter\AbstractExporter::$methods */ protected $methods = array( 'com.woltlab.wcf.user' => 'Users', @@ -78,7 +78,7 @@ class SMF2xExporter extends AbstractExporter { ); /** - * @see wcf\system\exporter\AbstractExporter::$limits + * @see \wcf\system\exporter\AbstractExporter::$limits */ protected $limits = array( 'com.woltlab.wcf.user' => 200, @@ -87,7 +87,7 @@ class SMF2xExporter extends AbstractExporter { ); /** - * @see wcf\system\exporter\IExporter::getSupportedData() + * @see \wcf\system\exporter\IExporter::getSupportedData() */ public function getSupportedData() { return array( @@ -112,7 +112,7 @@ class SMF2xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::validateDatabaseAccess() + * @see \wcf\system\exporter\IExporter::validateDatabaseAccess() */ public function validateDatabaseAccess() { parent::validateDatabaseAccess(); @@ -121,7 +121,7 @@ class SMF2xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::validateFileAccess() + * @see \wcf\system\exporter\IExporter::validateFileAccess() */ public function validateFileAccess() { if (in_array('com.woltlab.wcf.user.avatar', $this->selectedData) || in_array('com.woltlab.wbb.attachment', $this->selectedData) || in_array('com.woltlab.wcf.smiley', $this->selectedData)) { @@ -132,7 +132,7 @@ class SMF2xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::getQueue() + * @see \wcf\system\exporter\IExporter::getQueue() */ public function getQueue() { $queue = array(); @@ -183,7 +183,7 @@ class SMF2xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::getDefaultDatabasePrefix() + * @see \wcf\system\exporter\IExporter::getDefaultDatabasePrefix() */ public function getDefaultDatabasePrefix() { return 'smf_'; diff --git a/files/lib/system/exporter/WBB2xExporter.class.php b/files/lib/system/exporter/WBB2xExporter.class.php index 2d42cf9..88d5a52 100644 --- a/files/lib/system/exporter/WBB2xExporter.class.php +++ b/files/lib/system/exporter/WBB2xExporter.class.php @@ -29,7 +29,7 @@ class WBB2xExporter extends AbstractExporter { protected $boardCache = array(); /** - * @see wcf\system\exporter\AbstractExporter::$methods + * @see \wcf\system\exporter\AbstractExporter::$methods */ protected $methods = array( 'com.woltlab.wcf.user' => 'Users', @@ -82,7 +82,7 @@ class WBB2xExporter extends AbstractExporter { ); /** - * @see wcf\system\exporter\IExporter::validateDatabaseAccess() + * @see \wcf\system\exporter\IExporter::validateDatabaseAccess() */ public function validateDatabaseAccess() { parent::validateDatabaseAccess(); @@ -93,7 +93,7 @@ class WBB2xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::validateFileAccess() + * @see \wcf\system\exporter\IExporter::validateFileAccess() */ public function validateFileAccess() { if (in_array('com.woltlab.wcf.user.avatar', $this->selectedData) || in_array('com.woltlab.wbb.attachment', $this->selectedData) || in_array('com.woltlab.wcf.conversation.attachment', $this->selectedData) || in_array('com.woltlab.wcf.smiley', $this->selectedData)) { @@ -104,7 +104,7 @@ class WBB2xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::getSupportedData() + * @see \wcf\system\exporter\IExporter::getSupportedData() */ public function getSupportedData() { return array( @@ -130,7 +130,7 @@ class WBB2xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::getQueue() + * @see \wcf\system\exporter\IExporter::getQueue() */ public function getQueue() { $queue = array(); @@ -179,7 +179,7 @@ class WBB2xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::getDefaultDatabasePrefix() + * @see \wcf\system\exporter\IExporter::getDefaultDatabasePrefix() */ public function getDefaultDatabasePrefix() { return 'bb1_'; diff --git a/files/lib/system/exporter/WBB3xExporter.class.php b/files/lib/system/exporter/WBB3xExporter.class.php index f127759..e25354b 100644 --- a/files/lib/system/exporter/WBB3xExporter.class.php +++ b/files/lib/system/exporter/WBB3xExporter.class.php @@ -42,7 +42,7 @@ class WBB3xExporter extends AbstractExporter { protected $boardCache = array(); /** - * @see wcf\system\exporter\AbstractExporter::$methods + * @see \wcf\system\exporter\AbstractExporter::$methods */ protected $methods = array( 'com.woltlab.wcf.user' => 'Users', @@ -79,7 +79,7 @@ class WBB3xExporter extends AbstractExporter { ); /** - * @see wcf\system\exporter\AbstractExporter::$limits + * @see \wcf\system\exporter\AbstractExporter::$limits */ protected $limits = array( 'com.woltlab.wcf.user' => 100, @@ -91,7 +91,7 @@ class WBB3xExporter extends AbstractExporter { ); /** - * @see wcf\system\exporter\IExporter::init() + * @see \wcf\system\exporter\IExporter::init() */ public function init() { parent::init(); @@ -110,7 +110,7 @@ class WBB3xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::getSupportedData() + * @see \wcf\system\exporter\IExporter::getSupportedData() */ public function getSupportedData() { return array( @@ -145,7 +145,7 @@ class WBB3xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::validateDatabaseAccess() + * @see \wcf\system\exporter\IExporter::validateDatabaseAccess() */ public function validateDatabaseAccess() { parent::validateDatabaseAccess(); @@ -156,7 +156,7 @@ class WBB3xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::validateFileAccess() + * @see \wcf\system\exporter\IExporter::validateFileAccess() */ public function validateFileAccess() { if (in_array('com.woltlab.wcf.user.avatar', $this->selectedData) || in_array('com.woltlab.wbb.attachment', $this->selectedData) || in_array('com.woltlab.wcf.conversation.attachment', $this->selectedData) || in_array('com.woltlab.wcf.smiley', $this->selectedData)) { @@ -167,7 +167,7 @@ class WBB3xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::getQueue() + * @see \wcf\system\exporter\IExporter::getQueue() */ public function getQueue() { $queue = array(); @@ -239,7 +239,7 @@ class WBB3xExporter extends AbstractExporter { } /** - * @see wcf\system\exporter\IExporter::getDefaultDatabasePrefix() + * @see \wcf\system\exporter\IExporter::getDefaultDatabasePrefix() */ public function getDefaultDatabasePrefix() { return 'wbb1_1_'; -- 2.20.1