templates/includes/partials/_input.html.twig line 1

Open in your IDE?
  1. {#defaultInput
  2. usage:
  3. {% include('includes/partials/_input.html.twig' with {
  4.     'fieldName':'input',
  5.     'defaultInput': "optioneel, wordt gebruikt in template en in admin als er geen tekst is gevuld.",
  6.     'defaultInputInfo' : "optioneel, wordt gebruikt in admin als placeholder tekst. Wordt niet gebruikt in template."}) %}
  7. #}
  8. {% if editmode %}
  9.     {{ pimcore_input(fieldName ?? "input", {'placeholder': ((defaultInputInfo ?? (defaultInput ?? "")) |raw)} ) }}
  10. {% else %}
  11.     {{ renderOrDefault(pimcore_input(fieldName ?? "input").frontend(), defaultInput ?? "")|raw }}
  12. {% endif %}