This commit is contained in:
Jakub Vrana 2011-08-11 17:06:42 +02:00
parent 5a58d35405
commit 75783421f1
12 changed files with 14 additions and 20 deletions

View file

@ -7,7 +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 */ /** @access protected */
var $filename; var $filename;
function dumpOutput() { function dumpOutput() {

View file

@ -8,7 +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 */ /** @access protected */
var $prepend, $langPath; var $prepend, $langPath;
/** /**

View file

@ -6,7 +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 */ /** @access protected */
var $table, $id, $title, $subject, $message; var $table, $id, $title, $subject, $message;
/** /**

View file

@ -6,7 +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 */ /** @access protected */
var $uploadPath, $displayPath; var $uploadPath, $displayPath;
/** /**

View file

@ -6,7 +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 */ /** @access protected */
var $sameOrigin; var $sameOrigin;
/** /**

View file

@ -6,11 +6,8 @@
* @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 array @access protected */ /** @access protected */
var $servers; var $servers, $driver;
/** @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,7 +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 */ /** @access protected */
var $database; var $database;
/** Set database of login table /** Set database of login table

View file

@ -6,7 +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 */ /** @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,7 +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 */ /** @access protected */
var $from, $to; var $from, $to;
/** /**

View file

@ -6,7 +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 AdminerSqlLog { class AdminerSqlLog {
/** @var string @access protected */ /** @access protected */
var $filename; var $filename;
/** /**

View file

@ -7,7 +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 */ /** @access protected */
var $path; var $path;
/** /**

View file

@ -7,11 +7,8 @@
* @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 AdminerWymeditor { class AdminerWymeditor {
/** @var array @access protected */ /** @access protected */
var $scripts; var $scripts, $options;
/** @var string @access protected */
var $options;
/** /**
* @param array * @param array