1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-07 23:27:17 +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)
*/
class AdminerDumpZip {
/** @var string @access protected */
var $filename;
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)
*/
class AdminerEditCalendar {
/** @var string @access protected */
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)
*/
class AdminerEmailTable {
/** @var string @access protected */
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)
*/
class AdminerFileUpload {
/** @var string @access protected */
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)
*/
class AdminerFrames {
/** @var bool @access protected */
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)
*/
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())

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)
*/
class AdminerLoginTable {
/** @var string @access protected */
var $database;
/** 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)
*/
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

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)
*/
class AdminerSlugify {
/** @var string @access protected */
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)
*/
class AdminerTinymce {
/** @var string @access protected */
var $path;
/**