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 --- .../column_definitions_form.twig | 155 --------------------- 1 file changed, 155 deletions(-) delete mode 100644 srcs/phpmyadmin/templates/columns_definitions/column_definitions_form.twig (limited to 'srcs/phpmyadmin/templates/columns_definitions/column_definitions_form.twig') diff --git a/srcs/phpmyadmin/templates/columns_definitions/column_definitions_form.twig b/srcs/phpmyadmin/templates/columns_definitions/column_definitions_form.twig deleted file mode 100644 index 1fd4b64..0000000 --- a/srcs/phpmyadmin/templates/columns_definitions/column_definitions_form.twig +++ /dev/null @@ -1,155 +0,0 @@ -
- {{ get_hidden_inputs(form_params) }} - {# happens when an index has been set on a column #} - {# and a column is added to the table creation dialog #} - {# This contains a JSON-encoded string #} - - - - - - - {% if action == 'tbl_create.php' %} -
- - - - - -
{% trans 'Table name' %}: - - - {% trans 'Add' %} - - {% trans 'column(s)' %} - -
-
- {% endif %} - {% if content_cells is iterable %} - {% include 'columns_definitions/table_fields_definitions.twig' with { - 'is_backup': is_backup, - 'fields_meta': fields_meta, - 'mimework': mimework, - 'content_cells': content_cells, - 'change_column': change_column, - 'is_virtual_columns_supported': is_virtual_columns_supported, - 'browse_mime': browse_mime, - 'server_type': server_type, - 'max_rows': max_rows, - 'char_editing': char_editing, - 'attribute_types': attribute_types, - 'privs_available': privs_available, - 'max_length': max_length, - 'charsets': charsets - } only %} - {% endif %} - {% if action == 'tbl_create.php' %} -
- - - - - - - - - - - - - - - - - - - - {% if have_partitioning %} - - - - - - - {% endif %} -
{% trans 'Table comments:' %} {% trans 'Collation:' %}  - {% trans 'Storage Engine:' %} - {{ show_mysql_docu('Storage_engines') }} -   - {% trans 'Connection:' %} - {{ show_mysql_docu('federated-create-connection') }} -
- -   - -   - {{ get_html_select( - 'tbl_storage_engine', - null, - tbl_storage_engine - ) }} -   - -
- {% trans 'PARTITION definition:' %} - {{ show_mysql_docu('Partitioning') }} -
- {% include 'columns_definitions/partitions.twig' with { - 'partition_details': partition_details - } only %} -
-
- {% endif %} -
- - -
-
-
-- cgit