123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333 |
- {#
- This file is part of the Sonata package.
- (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
- For the full copyright and license information, please view the LICENSE
- file that was distributed with this source code.
- #}
- {% extends 'form_div_layout.html.twig' %}
- {% block form_widget -%}
- {{ parent() }}
- {% if sonata_help is defined and sonata_help %}
- <span class="help-block sonata-ba-field-widget-help">{{ sonata_help|raw }}</span>
- {% endif %}
- {%- endblock form_widget %}
- {% block form_widget_simple %}
- {% set attr = attr|merge({'class': attr.class|default('') ~ ' form-control'}) %}
- {{ parent() }}
- {% endblock form_widget_simple %}
- {% block textarea_widget %}
- {% set attr = attr|merge({'class': attr.class|default('') ~ ' form-control'}) %}
- {{ parent() }}
- {% endblock textarea_widget %}
- {% block money_widget -%}
- {% if money_pattern == '{{ widget }}' %}
- {{- block('form_widget_simple') -}}
- {% else %}
- {% set currencySymbol = money_pattern|replace({'{{ widget }}': ''})|trim %}
- {% if money_pattern matches '/^{{ widget }}/' %}
- <div class="input-group">
- {{- block('form_widget_simple') -}}
- <span class="input-group-addon">{{ currencySymbol }}</span>
- </div>
- {% elseif money_pattern matches '/{{ widget }}$/' %}
- <div class="input-group">
- <span class="input-group-addon">{{ currencySymbol }}</span>
- {{- block('form_widget_simple') -}}
- </div>
- {% endif %}
- {% endif %}
- {%- endblock money_widget %}
- {% block percent_widget %}
- {% spaceless %}
- {% set type = type|default('text') %}
- <div class="input-group">
- {{ block('form_widget_simple') }}
- <span class="input-group-addon">%</span>
- </div>
- {% endspaceless %}
- {% endblock percent_widget %}
- {# Labels #}
- {% block form_label %}
- {% spaceless %}
- {% set label_class = "" %}
- {% if sonata_admin.admin and sonata_admin.admin.getConfigurationPool().getOption('form_type') == 'horizontal' %}
- {% set label_class = " control-label col-sm-3" %}
- {% else %}
- {% set label_class = " control-label" %}
- {% endif%}
- {#{{ sonata_admin.admin.getConfigurationPool().getOption('form_type') }}#}
- {% if label is not sameas(false) %}
- {% set label_attr = label_attr|merge({'class': label_attr.class|default('') ~ label_class }) %}
- {% if not compound %}
- {% set label_attr = label_attr|merge({'for': id}) %}
- {% endif %}
- {% if required %}
- {% set label_attr = label_attr|merge({'class': (label_attr.class|default('') ~ ' required')|trim}) %}
- {% endif %}
- {% if label is empty %}
- {% set label = name|humanize %}
- {% endif %}
- {% if in_list_checkbox is defined and in_list_checkbox and widget is defined %}
- <label{% for attrname,attrvalue in attr %} {{attrname}}="{{attrvalue}}"{% endfor %}>
- {{ widget|raw }}
- <span>
- {% if not sonata_admin.admin %}
- {{- label|trans({}, translation_domain) -}}
- {% else %}
- {{- label|trans({}, sonata_admin.field_description.translationDomain) -}}
- {% endif%}
- </span>
- </label>
- {% else %}
- <label{% for attrname, attrvalue in label_attr %} {{ attrname }}="{{ attrvalue }}"{% endfor %}>
- {% if not sonata_admin.admin%}
- {{- label|trans({}, translation_domain) -}}
- {% else %}
- {{ sonata_admin.admin.trans(label, {}, sonata_admin.field_description.translationDomain) }}
- {% endif %}
- </label>
- {% endif %}
- {% endif %}
- {% endspaceless %}
- {% endblock form_label %}
- {% block choice_widget_expanded %}
- {% spaceless %}
- {% set attr = attr|merge({'class': attr.class|default('') ~ ' list-unstyled'}) %}
- <ul {{ block('widget_container_attributes') }}>
- {% for child in form %}
- <li>
- {% set form_widget_content %}
- {{ form_widget(child, {'horizontal': false, 'horizontal_input_wrapper_class': ''}) }} {# {'horizontal': false, 'horizontal_input_wrapper_class': ''} needed to avoid MopaBootstrapBundle messing with the DOM #}
- {% endset %}
- {{ form_label(child, child.vars.label|default(null), { 'in_list_checkbox' : true, 'widget' : form_widget_content } ) }}
- </li>
- {% endfor %}
- </ul>
- {% endspaceless %}
- {% endblock choice_widget_expanded %}
- {% block choice_widget_collapsed %}
- {% spaceless %}
- {% if required and empty_value is none and not empty_value_in_choices and not multiple %}
- {% set required = false %}
- {% endif %}
- {% if sonata_admin.admin and not sonata_admin.admin.getConfigurationPool().getOption('use_select2') %}
- {% set attr = attr|merge({'class': attr.class|default('') ~ ' form-control'}) %}
- {% endif %}
- {% if sortable and multiple %}
- {{ block('sonata_type_choice_multiple_sortable') }}
- {% else %}
- <select {{ block('widget_attributes') }}{% if multiple %} multiple="multiple"{% endif %} >
- {% if empty_value is not none %}
- <option value=""{% if required and value is empty %} selected="selected"{% endif %}>
- {% if not sonata_admin.admin %}
- {{- empty_value|trans({}, translation_domain) -}}
- {% else %}
- {{- empty_value|trans({}, sonata_admin.field_description.translationDomain) -}}
- {% endif%}
- </option>
- {% endif %}
- {% if preferred_choices|length > 0 %}
- {% set options = preferred_choices %}
- {{ block('choice_widget_options') }}
- {% if choices|length > 0 %}
- <option disabled="disabled">{{ separator }}</option>
- {% endif %}
- {% endif %}
- {% set options = choices %}
- {{ block('choice_widget_options') }}
- </select>
- {% endif %}
- {% endspaceless %}
- {% endblock choice_widget_collapsed %}
- {% block form_row %}
- {% set label_class = "" %}
- {% set div_class = "" %}
- {% if sonata_admin.admin and sonata_admin.admin.getConfigurationPool().getOption('form_type') == 'horizontal' %}
- {% set label_class = "control-label col-sm-3" %}
- {% set div_class = "col-sm-9 col-md-9" %}
- {% else %}
- {% set label_class = "control-label" %}
- {% endif%}
- {% if sonata_admin is not defined or not sonata_admin_enabled or not sonata_admin.field_description %}
- <div class="form-group {% if errors|length > 0%} has-error{% endif %}">
- {{ form_label(form, label|default(null)) }}
- <div class="{% if label is sameas(false) %}sonata-collection-row-without-label{% endif %}">
- {{ form_widget(form, {'horizontal': false, 'horizontal_input_wrapper_class': ''}) }} {# {'horizontal': false, 'horizontal_input_wrapper_class': ''} needed to avoid MopaBootstrapBundle messing with the DOM #}
- {% if errors|length > 0 %}
- <div class="help-block sonata-ba-field-error-messages">
- {{ form_errors(form) }}
- </div>
- {% endif %}
- </div>
- </div>
- {% else %}
- <div class="form-group{% if errors|length > 0%} has-error{%endif%}" id="sonata-ba-field-container-{{ id }}">
- {% block label %}
- {% if sonata_admin.field_description.options.name is defined %}
- {{ form_label(form, sonata_admin.field_description.options.name, { 'attr' : {'class' : label_class} }) }}
- {% else %}
- {{ form_label(form, label|default(null), { 'attr' : {'class' : label_class} }) }}
- {% endif %}
- {% endblock %}
- {% set has_label = sonata_admin.field_description.options.name is defined or label is not sameas(false) %}
- <div class="{{ div_class }} sonata-ba-field sonata-ba-field-{{ sonata_admin.edit }}-{{ sonata_admin.inline }} {% if errors|length > 0 %}sonata-ba-field-error{% endif %} {% if not has_label %}sonata-collection-row-without-label{% endif %}">
- {{ form_widget(form, {'horizontal': false, 'horizontal_input_wrapper_class': ''}) }} {# {'horizontal': false, 'horizontal_input_wrapper_class': ''} needed to avoid MopaBootstrapBundle messing with the DOM #}
- {% if errors|length > 0 %}
- <div class="help-block sonata-ba-field-error-messages">
- {{ form_errors(form) }}
- </div>
- {% endif %}
- {% if sonata_admin.field_description.help %}
- <span class="help-block sonata-ba-field-help">{{ sonata_admin.admin.trans(sonata_admin.field_description.help, {}, sonata_admin.field_description.translationDomain)|raw }}</span>
- {% endif %}
- </div>
- </div>
- {% endif %}
- {% endblock form_row %}
- {% block sonata_type_native_collection_widget_row %}
- {% spaceless %}
- <div class="sonata-collection-row">
- {% if allow_delete %}
- <a href="#" class="btn sonata-collection-delete"><i class="fa fa-minus-circle"></i></a>
- {% endif %}
- {{ form_row(child) }}
- </div>
- {% endspaceless %}
- {% endblock sonata_type_native_collection_widget_row %}
- {% block sonata_type_native_collection_widget %}
- {% spaceless %}
- {% if prototype is defined %}
- {% set child = prototype %}
- {% set attr = attr|merge({'data-prototype': block('sonata_type_native_collection_widget_row'), 'data-prototype-name': prototype.vars.name, 'class': attr.class|default('') }) %}
- {% endif %}
- <div {{ block('widget_container_attributes') }}>
- {{ form_errors(form) }}
- {% for child in form %}
- {{ block('sonata_type_native_collection_widget_row') }}
- {% endfor %}
- {{ form_rest(form) }}
- {% if allow_add %}
- <div><a href="#" class="btn sonata-collection-add"><i class="fa fa-plus-circle"></i></a></div>
- {% endif %}
- </div>
- {% endspaceless %}
- {% endblock sonata_type_native_collection_widget %}
- {% block sonata_type_immutable_array_widget %}
- {% spaceless %}
- <div {{ block('widget_container_attributes') }}>
- {{ form_errors(form) }}
- {% for key, child in form %}
- {{ block('sonata_type_immutable_array_widget_row') }}
- {% endfor %}
- {{ form_rest(form) }}
- </div>
- {% endspaceless %}
- {% endblock sonata_type_immutable_array_widget %}
- {% block sonata_type_immutable_array_widget_row %}
- {% spaceless %}
- <div class="form-group{% if child.vars.errors|length > 0%} error{%endif%}" id="sonata-ba-field-container-{{ id }}-{{ key }}">
- {{ form_label(child) }}
- {% set div_class = "" %}
- {% if sonata_admin.admin and sonata_admin.admin.getConfigurationPool().getOption('form_type') == 'horizontal' %}
- {% set div_class = "col-sm-9 col-md-9" %}
- {% endif%}
- <div class="{{ div_class }} sonata-ba-field sonata-ba-field-{{ sonata_admin.edit }}-{{ sonata_admin.inline }} {% if child.vars.errors|length > 0 %}sonata-ba-field-error{% endif %}">
- {{ form_widget(child, {'horizontal': false, 'horizontal_input_wrapper_class': ''}) }} {# {'horizontal': false, 'horizontal_input_wrapper_class': ''} needed to avoid MopaBootstrapBundle messing with the DOM #}
- </div>
- {% if child.vars.errors|length > 0 %}
- <div class="help-block sonata-ba-field-error-messages">
- {{ form_errors(child) }}
- </div>
- {% endif %}
- </div>
- {% endspaceless %}
- {% endblock %}
- {% block sonata_type_model_autocomplete_widget %}
- {% include template %}
- {% endblock sonata_type_model_autocomplete_widget %}
- {% block sonata_type_choice_field_mask_widget %}
- {{ block('choice_widget') }}
- {% set main_form_name = id|slice(0, id|length - name|length) %}
- <script>
- jQuery(document).ready(function() {
- var allFields = {{ all_fields|json_encode|raw }};
- var map = {{ map|json_encode|raw }};
- showMaskChoiceEl = jQuery('#{{ main_form_name }}{{ name }}');
- showMaskChoiceEl.on('change', function () {
- choice_field_mask_show(jQuery(this).val());
- });
- function choice_field_mask_show(val)
- {
- var controlGroupIdFunc = function (field) {
- return '#sonata-ba-field-container-{{ main_form_name }}' + field;
- };
- if (map[val] == undefined) {
- jQuery.each(allFields, function (i, field) {
- jQuery(controlGroupIdFunc(field)).hide();
- });
- return;
- }
- jQuery.each(allFields, function (i, field) {
- jQuery(controlGroupIdFunc(field)).hide();
- });
- jQuery.each(map[val], function (i, field) {
- jQuery(controlGroupIdFunc(field)).show();
- });
- }
- choice_field_mask_show(showMaskChoiceEl.val());
- });
- </script>
- {% endblock %}
- {% block sonata_type_choice_multiple_sortable %}
- <input type="hidden" name="{{ full_name }}" id="{{ id }}" value="{{ value|join(',') }}" />
- <script>
- jQuery(document).ready(function() {
- var $target = jQuery('#{{ id }}');
- Admin.setup_sortable_select2($target, {{ form.vars.choices|json_encode|raw }});
- });
- </script>
- {% endblock %}
|