PHP Classes

File: aksara/Views/components/form/checkbox.twig

Recommend this page to a friend!
  Classes of Aby Dahana   Aksara   aksara/Views/components/form/checkbox.twig   Download  
File: aksara/Views/components/form/checkbox.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Aksara
A CodeIgniter based API and CRUD generator
Author: By
Last change:
Date: 2 days ago
Size: 445 bytes
 

Contents

Class file image Download
{% for option in content %} <div class="form-check me-3"> <label class="form-check-label {{ option.class }}"> <input type="checkbox" name="{{ name }}[]" role="checkbox" value="{{ option.value }}" class="form-check-input {{ option.class }}" id="{{ option.value }}_input" {{ option.readonly }} {% if option.checked %} checked {% endif %}> {{ option.label | raw }} </label> </div> {% endfor %}