b0y-101 Mini Shell


Current Path : E:/www/km/05/administrator/components/com_jce/layouts/edit/
File Upload :
Current File : E:/www/km/05/administrator/components/com_jce/layouts/edit/additional.php

<?php
$plugins = $displayData->get('additional');

?>
<fieldset class="<?php echo !empty($displayData->formclass) ? $displayData->formclass : ''; ?>">
    <legend><?php echo JText::_('WF_PROFILES_FEATURES_ADDITIONAL'); ?></legend>
    <div class="control-group">
        <div class="control-label"></div>
        <div class="controls">
            <div class="editor-features">
                <?php foreach ($plugins as $plugin): ?>
                    <div class="control-group">
                        <label class="checkbox">
                            <input type="checkbox" value="<?php echo $plugin->name; ?>" <?php echo $plugin->active ? ' checked="checked"' : ''; ?>> <?php echo JText::_($plugin->title); ?>
                        </label>
                        <span class="help-block form-text text-muted w-100"><?php echo JText::_($plugin->description); ?></span>
                    </div>
                <?php endforeach;?>
            </div>
        </div>
    </div>
</fieldset>

Copyright © 2019 by b0y-101