1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 07:36:44 +02:00

Properties @access

This commit is contained in:
Jakub Vrana
2011-06-10 13:32:46 +02:00
parent 2eee7a75aa
commit e6b520212b
10 changed files with 14 additions and 1 deletions

View File

@@ -7,6 +7,7 @@
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/ */
class AdminerDumpZip { class AdminerDumpZip {
/** @var string @access protected */
var $filename; var $filename;
function dumpOutput() { function dumpOutput() {

View File

@@ -8,6 +8,7 @@
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/ */
class AdminerEditCalendar { class AdminerEditCalendar {
/** @var string @access protected */
var $prepend, $langPath; var $prepend, $langPath;
/** /**

View File

@@ -6,6 +6,7 @@
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/ */
class AdminerEmailTable { class AdminerEmailTable {
/** @var string @access protected */
var $table, $id, $title, $subject, $message; var $table, $id, $title, $subject, $message;
/** /**

View File

@@ -6,6 +6,7 @@
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/ */
class AdminerFileUpload { class AdminerFileUpload {
/** @var string @access protected */
var $uploadPath, $displayPath; var $uploadPath, $displayPath;
/** /**

View File

@@ -6,6 +6,7 @@
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/ */
class AdminerFrames { class AdminerFrames {
/** @var bool @access protected */
var $sameOrigin; var $sameOrigin;
/** /**

View File

@@ -6,7 +6,11 @@
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/ */
class AdminerLoginServers { class AdminerLoginServers {
var $servers, $driver; /** @var array @access protected */
var $servers;
/** @var string @access protected */
var $driver;
/** Set supported servers /** Set supported servers
* @param array array($domain) or array($domain => $description) or array($category => array()) * @param array array($domain) or array($domain => $description) or array($category => array())

View 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) * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/ */
class AdminerLoginTable { class AdminerLoginTable {
/** @var string @access protected */
var $database; var $database;
/** Set database of login table /** Set database of login table

View File

@@ -6,6 +6,7 @@
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/ */
class AdminerPlugin extends Adminer { class AdminerPlugin extends Adminer {
/** @var array @access protected */
var $plugins; var $plugins;
function _findRootClass($class) { // is_subclass_of(string, string) is available since PHP 5.0.3 function _findRootClass($class) { // is_subclass_of(string, string) is available since PHP 5.0.3

View File

@@ -6,6 +6,7 @@
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/ */
class AdminerSlugify { class AdminerSlugify {
/** @var string @access protected */
var $from, $to; var $from, $to;
/** /**

View File

@@ -7,6 +7,7 @@
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/ */
class AdminerTinymce { class AdminerTinymce {
/** @var string @access protected */
var $path; var $path;
/** /**