From e6b520212b790488194066793df6fca7cb67a1ed Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Fri, 10 Jun 2011 13:32:46 +0200 Subject: [PATCH] Properties @access --- plugins/dump-zip.php | 1 + plugins/edit-calendar.php | 1 + plugins/email-table.php | 1 + plugins/file-upload.php | 1 + plugins/frames.php | 1 + plugins/login-servers.php | 6 +++++- plugins/login-table.php | 1 + plugins/plugin.php | 1 + plugins/slugify.php | 1 + plugins/tinymce.php | 1 + 10 files changed, 14 insertions(+), 1 deletion(-) diff --git a/plugins/dump-zip.php b/plugins/dump-zip.php index 0c87ac2a..d6d9f81d 100644 --- a/plugins/dump-zip.php +++ b/plugins/dump-zip.php @@ -7,6 +7,7 @@ * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) */ class AdminerDumpZip { + /** @var string @access protected */ var $filename; function dumpOutput() { diff --git a/plugins/edit-calendar.php b/plugins/edit-calendar.php index e4a58b78..b3867f66 100644 --- a/plugins/edit-calendar.php +++ b/plugins/edit-calendar.php @@ -8,6 +8,7 @@ * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) */ class AdminerEditCalendar { + /** @var string @access protected */ var $prepend, $langPath; /** diff --git a/plugins/email-table.php b/plugins/email-table.php index 5c897ccd..bc8867a3 100644 --- a/plugins/email-table.php +++ b/plugins/email-table.php @@ -6,6 +6,7 @@ * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) */ class AdminerEmailTable { + /** @var string @access protected */ var $table, $id, $title, $subject, $message; /** diff --git a/plugins/file-upload.php b/plugins/file-upload.php index bf3ecbb9..8429a056 100644 --- a/plugins/file-upload.php +++ b/plugins/file-upload.php @@ -6,6 +6,7 @@ * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) */ class AdminerFileUpload { + /** @var string @access protected */ var $uploadPath, $displayPath; /** diff --git a/plugins/frames.php b/plugins/frames.php index 8cbebd9d..e6ae40f8 100644 --- a/plugins/frames.php +++ b/plugins/frames.php @@ -6,6 +6,7 @@ * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) */ class AdminerFrames { + /** @var bool @access protected */ var $sameOrigin; /** diff --git a/plugins/login-servers.php b/plugins/login-servers.php index 50fbf8a6..4a06b02c 100644 --- a/plugins/login-servers.php +++ b/plugins/login-servers.php @@ -6,7 +6,11 @@ * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) */ class AdminerLoginServers { - var $servers, $driver; + /** @var array @access protected */ + var $servers; + + /** @var string @access protected */ + var $driver; /** Set supported servers * @param array array($domain) or array($domain => $description) or array($category => array()) diff --git a/plugins/login-table.php b/plugins/login-table.php index 4b7f607b..86439199 100644 --- a/plugins/login-table.php +++ b/plugins/login-table.php @@ -15,6 +15,7 @@ CREATE TABLE login ( * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) */ class AdminerLoginTable { + /** @var string @access protected */ var $database; /** Set database of login table diff --git a/plugins/plugin.php b/plugins/plugin.php index 344f0310..ea6f6a6f 100644 --- a/plugins/plugin.php +++ b/plugins/plugin.php @@ -6,6 +6,7 @@ * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) */ class AdminerPlugin extends Adminer { + /** @var array @access protected */ var $plugins; function _findRootClass($class) { // is_subclass_of(string, string) is available since PHP 5.0.3 diff --git a/plugins/slugify.php b/plugins/slugify.php index 153a06b6..ccb9ab9a 100644 --- a/plugins/slugify.php +++ b/plugins/slugify.php @@ -6,6 +6,7 @@ * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) */ class AdminerSlugify { + /** @var string @access protected */ var $from, $to; /** diff --git a/plugins/tinymce.php b/plugins/tinymce.php index a9bb812c..7e33ee0d 100644 --- a/plugins/tinymce.php +++ b/plugins/tinymce.php @@ -7,6 +7,7 @@ * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) */ class AdminerTinymce { + /** @var string @access protected */ var $path; /**