/usr/share/php/PhpMyAdmin/SqlParser/Statements
NameSizeModeActions
AlterStatement.php37680644editdlrm
AnalyzeStatement.php6360644editdlrm
BackupStatement.php5270644editdlrm
CallStatement.php7390644editdlrm
CheckStatement.php5270644editdlrm
ChecksumStatement.php4510644editdlrm
CreateStatement.php229280644editdlrm
DeleteStatement.php116780644editdlrm
DropStatement.php14330644editdlrm
ExplainStatement.php2000644editdlrm
InsertStatement.php74590644editdlrm
LoadStatement.php110740644editdlrm
LockStatement.php34940644editdlrm
MaintenanceStatement.php15030644editdlrm
NotImplementedStatement.php13740644editdlrm
OptimizeStatement.php6410644editdlrm
PurgeStatement.php38530644editdlrm
RenameStatement.php13770644editdlrm
RepairStatement.php5700644editdlrm
ReplaceStatement.php53350644editdlrm
RestoreStatement.php4770644editdlrm
SelectStatement.php74360644editdlrm
SetStatement.php20280644editdlrm
ShowStatement.php12800644editdlrm
TransactionStatement.php23480644editdlrm
TruncateStatement.php7470644editdlrm
UpdateStatement.php23340644editdlrm
Edit: /usr/share/php/PhpMyAdmin/SqlParser/Statements/DropStatement.php (1433B)
1, 'EVENT' => 1, 'FUNCTION' => 1, 'INDEX' => 1, 'LOGFILE' => 1, 'PROCEDURE' => 1, 'SCHEMA' => 1, 'SERVER' => 1, 'TABLE' => 1, 'VIEW' => 1, 'TABLESPACE' => 1, 'TRIGGER' => 1, 'USER' => 1, 'TEMPORARY' => 2, 'IF EXISTS' => 3, ]; /** * The clauses of this statement, in order. * * @see Statement::$CLAUSES * * @var array */ public static $CLAUSES = [ 'DROP' => [ 'DROP', 2, ], // Used for options. '_OPTIONS' => [ '_OPTIONS', 1, ], // Used for select expressions. 'DROP_' => [ 'DROP', 1, ], 'ON' => [ 'ON', 3, ], ]; /** * Dropped elements. * * @var Expression[] */ public $fields; /** * Table of the dropped index. * * @var Expression */ public $table; }