One Hat Cyber Team
  • Dir : ~/usr/local/psa/phpMyAdmin/templates/table/insert/
  • View File Name : column_row.twig
    {% if 'text' in column.pma_type and special_chars|length > 32000 %} {% trans 'Because of its length,
    this column might not be editable.' %} {% endif %} {% elseif column.pma_type == 'enum' %} {{ backup_field|raw }} {% if column.Type|length > 20 %} {% else %} {% for enum_value in column.values %} {% endfor %} {% endif %} {% elseif column.pma_type == 'set' %} {{ backup_field|raw }} {% elseif column.is_binary or column.is_blob %} {% if is_column_protected_blob %} {% trans 'Binary - do not edit' %} ({{ blob_value }} {{ blob_value_unit }}) {% elseif column.is_blob or (column.len > limit_chars) %} {{ backup_field|raw }} {% else %} {{ backup_field|raw }} {{ input_field_html|raw }} {% endif %} {% if is_upload and column.is_blob %}
    {# We don't want to prevent users from using browser's default drag-drop feature on some page(s), so we add noDragDrop class to the input #} {{ max_upload_size }} {% endif %} {{ select_option_for_upload|raw }} {% else %} {{ value|raw }} {% endif %} {% if column.pma_type in gis_data_types %} {{ link_or_button('#', null, get_icon('b_edit', 'Edit/Insert'|trans)) }} {% endif %} {% endif %}