PHP Classes

File: themes/default/components/core/form_read.twig

Recommend this page to a friend!
  Classes of Aby Dahana   Aksara   themes/default/components/core/form_read.twig   Download  
File: themes/default/components/core/form_read.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Aksara
A CodeIgniter based API and CRUD generator
Author: By
Last change: Version update
security improvement and template fix
Date: 5 days ago
Size: 983 bytes
 

Contents

Class file image Download
<div class="mb-3"> {% if params.label and params.type != 'geospatial' %} <label class="form-label text-muted mb-0"> {{ params.label }} {% if params.tooltip %} <i class="mdi mdi-information-outline text-info" data-bs-toggle="tooltip" title="{{ params.tooltip }}"></i> {% endif %} {% if params.required %} <span class="text-danger font-weight-bold">*</span> {% endif %} </label> {% endif %} <div class="input-group"> {% if params.prepend %} <span class="input-group-text-unformatted me-2"> {{ params.prepend | raw }} </span> {% endif %} {# Include form component #} {% include 'view/' ~ params.type ~ '.twig' with params %} {% if params.append %} <span class="input-group-text-unformatted ms-2"> {{ params.append | raw }} </span> {% endif %} </div> </div>