first commit
This commit is contained in:
22
administrator/components/com_jce/layouts/edit/additional.php
Normal file
22
administrator/components/com_jce/layouts/edit/additional.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user