]> git.joonet.de Git - adminer.git/commitdiff
Properties @access
authorJakub Vrana <jakub@vrana.cz>
Fri, 10 Jun 2011 11:32:46 +0000 (13:32 +0200)
committerJakub Vrana <jakub@vrana.cz>
Fri, 10 Jun 2011 11:32:46 +0000 (13:32 +0200)
plugins/dump-zip.php
plugins/edit-calendar.php
plugins/email-table.php
plugins/file-upload.php
plugins/frames.php
plugins/login-servers.php
plugins/login-table.php
plugins/plugin.php
plugins/slugify.php
plugins/tinymce.php

index 0c87ac2a759612640dc073233fda9ba563df6548..d6d9f81d4eec334bbd2979157bbf4a4180b55a01 100644 (file)
@@ -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() {
index e4a58b780a28221cf4093c2bede7604810b55f31..b3867f66bcab8cb6f27289dbcab1d944cc57a334 100644 (file)
@@ -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;
        
        /**
index 5c897ccd05d0828ec403aae4123ad04bf9c99186..bc8867a34f298c234261d8ab31000e87af7f0c5f 100644 (file)
@@ -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;
        
        /**
index bf3ecbb91913fcf200cc150c0217598b187c3541..8429a056758e3ae5826884b0d428db40edf2f247 100644 (file)
@@ -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;
        
        /**
index 8cbebd9dcfc29553ab1d9f3561abe3cf4e839118..e6ae40f8a3bcc4a07336592901500c945b546be1 100644 (file)
@@ -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;
        
        /**
index 50fbf8a6c7c9ebe1785356090c3c53d2744a3627..4a06b02ce708c30b878f9d7d59a5bba2744e67ae 100644 (file)
@@ -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())
index 4b7f607bf41f8d579c3ab1b3a49a2cbdbb40190b..8643919972afd5f4ef57e757f0f1b9a55fbc69ff 100644 (file)
@@ -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
index 344f0310672b4ebcebfa211dfd7acf1bb248319e..ea6f6a6ffff08d90ac33c507aeabcaac753aa5ec 100644 (file)
@@ -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
index 153a06b6c690cc3be4a06de69f9ca4a94a568714..ccb9ab9a82d11594f96ab5c068c47401fe62d5ae 100644 (file)
@@ -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;
        
        /**
index a9bb812c4ad6b879cbe83fccb80212ea103f769a..7e33ee0da84f39a39a455abbbdc09672da248b8b 100644 (file)
@@ -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;
        
        /**