<?php
+// any method change in this file should be transferred to editor/include/adminer.inc.php and plugins/plugin.php
+
class Adminer {
/** @var array operators used in select, null for all operators */
var $operators;
echo "</div></fieldset>\n";
}
+ /** Print command box in select
+ * @return bool whether to print default commands
+ */
+ function selectCommandPrint() {
+ return !information_schema(DB);
+ }
+
+ /** Print import box in select
+ * @return bool whether to print default import
+ */
+ function selectImportPrint() {
+ return true;
+ }
+
/** Print extra text in the end of a select form
* @param array fields holding e-mails
* @param array selectable columns
}
echo " (" . ($exact_count ? "" : "~ ") . lang('%d row(s)', $found_rows) . ") " . checkbox("all", 1, 0, lang('whole result')) . "\n";
- if (!information_schema(DB)) {
+ if ($adminer->selectCommandPrint()) {
?>
<fieldset><legend><?php echo lang('Edit'); ?></legend><div>
<input type="submit" value="<?php echo lang('Save'); ?>" title="<?php echo lang('Double click on a value to modify it.'); ?>" class="jsonly">
echo " <input type='submit' name='export' value='" . lang('Export') . "' onclick='eventStop(event);'>\n";
echo "</div></fieldset>\n";
}
- print_fieldset("import", lang('Import'), !$rows);
- echo "<input type='file' name='csv_file'> ";
- echo html_select("separator", array("csv" => "CSV,", "csv;" => "CSV;", "tsv" => "TSV"), $adminer_export["format"], 1); // 1 - select
- echo " <input type='submit' name='import' value='" . lang('Import') . "'>";
- echo "<input type='hidden' name='token' value='$token'>\n";
- echo "</div></fieldset>\n";
+ if ($adminer->selectImportPrint()) {
+ print_fieldset("import", lang('Import'), !$rows);
+ echo "<input type='file' name='csv_file'> ";
+ echo html_select("separator", array("csv" => "CSV,", "csv;" => "CSV;", "tsv" => "TSV"), $adminer_export["format"], 1); // 1 - select
+ echo " <input type='submit' name='import' value='" . lang('Import') . "'>";
+ echo "<input type='hidden' name='token' value='$token'>\n";
+ echo "</div></fieldset>\n";
+ }
$adminer->selectEmailPrint(array_filter($email_fields, 'strlen'), $columns);
echo "</div></fieldset>\n";
}
+ function selectCommandPrint() {
+ return true;
+ }
+
+ function selectImportPrint() {
+ return true;
+ }
+
function selectEmailPrint($emailFields, $columns) {
if ($emailFields) {
print_fieldset("email", lang('E-mail'), $_POST["email_append"]);
return $this->_applyPlugin(__FUNCTION__, $args);
}
+ function selectCommandPrint() {
+ $args = func_get_args();
+ return $this->_applyPlugin(__FUNCTION__, $args);
+ }
+
+ function selectImportPrint() {
+ $args = func_get_args();
+ return $this->_applyPlugin(__FUNCTION__, $args);
+ }
+
function selectEmailPrint() {
$args = func_get_args();
return $this->_applyPlugin(__FUNCTION__, $args);