From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- .../templates/table/search/selection_form.twig | 226 --------------------- 1 file changed, 226 deletions(-) delete mode 100644 srcs/phpmyadmin/templates/table/search/selection_form.twig (limited to 'srcs/phpmyadmin/templates/table/search/selection_form.twig') diff --git a/srcs/phpmyadmin/templates/table/search/selection_form.twig b/srcs/phpmyadmin/templates/table/search/selection_form.twig deleted file mode 100644 index 2ba4d60..0000000 --- a/srcs/phpmyadmin/templates/table/search/selection_form.twig +++ /dev/null @@ -1,226 +0,0 @@ -{% if search_type == 'zoom' %} - {% include 'table/search/form_tag.twig' with { - 'script_name': 'tbl_zoom_select.php', - 'form_id': 'zoom_search_form', - 'db': db, - 'table': table, - 'goto': goto - } only %} - -{% elseif search_type == 'normal' %} - {% include 'table/search/form_tag.twig' with { - 'script_name': 'tbl_select.php', - 'form_id': 'tbl_search_form', - 'db': db, - 'table': table, - 'goto': goto - } only %} - -{% elseif search_type == 'replace' %} - {% include 'table/search/form_tag.twig' with { - 'script_name': 'tbl_find_replace.php', - 'form_id': 'find_replace_form', - 'db': db, - 'table': table, - 'goto': goto - } only %} -
-
- - {% trans 'Find and replace' %} - {% trans 'Find:' %} - - {% trans 'Replace with:' %} - - - {% trans 'Column:' %} - - - {% include 'checkbox.twig' with { - 'html_field_id': 'useRegex', - 'html_field_name': 'useRegex', - 'label': 'Use regular expression'|trans, - 'checked': false, - 'onclick': false - } only %} -
-
-{% else %} - {% include 'table/search/form_tag.twig' with { - 'script_name': '', - 'form_id': '', - 'db': db, - 'table': table, - 'goto': goto - } only %} -{% endif %} - -{# Displays selection form's footer elements #} -
- -
- -
-- cgit