mirror of
https://github.com/vrana/adminer.git
synced 2025-08-07 23:27:17 +02:00
Properties @access
This commit is contained in:
@@ -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() {
|
||||||
|
@@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -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())
|
||||||
|
@@ -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
|
||||||
|
@@ -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
|
||||||
|
@@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user