Changeset 3730:5c45a5df9a59 for plugins/dcCKEditor/tpl
- Timestamp:
- 03/08/18 17:58:39 (8 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/dcCKEditor/tpl/index.tpl
r3725 r3730 7 7 <body> 8 8 <?php echo dcPage::breadcrumb(array(__('Plugins') => 9 '', __('dcCKEditor') => '')).dcPage::notices(); ?>10 <?php if ($is_admin): ?>9 '', __('dcCKEditor') => '')) . dcPage::notices(); ?> 10 <?php if ($is_admin): ?> 11 11 <h3 class="hidden-if-js"> 12 <?php echo __('Settings'); ?>12 <?php echo __('Settings'); ?> 13 13 </h3> 14 <form action="<?php echo $p_url; ?>" enctype="multipart/form-data" method="post">14 <form action="<?php echo $p_url; ?>" enctype="multipart/form-data" method="post"> 15 15 <div class="fieldset"> 16 16 <h3> 17 <?php echo __('Plugin activation'); ?>17 <?php echo __('Plugin activation'); ?> 18 18 </h3> 19 19 <p> 20 20 <label class="classic" for="dcckeditor_active"> 21 <?php echo form::checkbox('dcckeditor_active', 1, $dcckeditor_active); ?>22 <?php echo __('Enable dcCKEditor plugin'); ?>21 <?php echo form::checkbox('dcckeditor_active', 1, $dcckeditor_active); ?> 22 <?php echo __('Enable dcCKEditor plugin'); ?> 23 23 </label> 24 24 </p> 25 25 </div> 26 <?php if ($dcckeditor_active): ?>26 <?php if ($dcckeditor_active): ?> 27 27 <div class="fieldset"> 28 28 <h3> … … 32 32 <?php echo form::checkbox('dcckeditor_alignment_buttons', 1, $dcckeditor_alignment_buttons); ?> 33 33 <label class="classic" for="dcckeditor_alignment_buttons"> 34 <?php echo __('Add alignment buttons'); ?>34 <?php echo __('Add alignment buttons'); ?> 35 35 </label> 36 36 </p> … … 38 38 <?php echo form::checkbox('dcckeditor_list_buttons', 1, $dcckeditor_list_buttons); ?> 39 39 <label class="classic" for="dcckeditor_list_buttons"> 40 <?php echo __('Add lists buttons'); ?>40 <?php echo __('Add lists buttons'); ?> 41 41 </label> 42 42 </p> … … 44 44 <?php echo form::checkbox('dcckeditor_textcolor_button', 1, $dcckeditor_textcolor_button); ?> 45 45 <label class="classic" for="dcckeditor_textcolor_button"> 46 <?php echo __('Add text color button'); ?>46 <?php echo __('Add text color button'); ?> 47 47 </label> 48 48 </p> … … 50 50 <?php echo form::checkbox('dcckeditor_background_textcolor_button', 1, $dcckeditor_background_textcolor_button); ?> 51 51 <label class="classic" for="dcckeditor_background_textcolor_button"> 52 <?php echo __('Add background text color button'); ?>52 <?php echo __('Add background text color button'); ?> 53 53 </label> 54 54 </p> … … 56 56 <?php echo form::checkbox('dcckeditor_cancollapse_button', 1, $dcckeditor_cancollapse_button); ?> 57 57 <label class="classic" for="dcckeditor_cancollapse_button"> 58 <?php echo __('Add collapse button'); ?>58 <?php echo __('Add collapse button'); ?> 59 59 </label> 60 60 </p> 61 61 <p> 62 <?php echo form::checkbox('dcckeditor_format_select', 1, $dcckeditor_format_select); ?>62 <?php echo form::checkbox('dcckeditor_format_select', 1, $dcckeditor_format_select); ?> 63 63 <label class="classic" for="dcckeditor_format_select"> 64 <?php echo __('Add format selection'); ?>64 <?php echo __('Add format selection'); ?> 65 65 </label> 66 66 </p> 67 67 <p> 68 68 <label class="classic" for="dcckeditor_format_tags"> 69 <?php echo __('Custom formats'); ?>69 <?php echo __('Custom formats'); ?> 70 70 </label> 71 <?php echo form::field('dcckeditor_format_tags', 100, 255, $dcckeditor_format_tags); ?>71 <?php echo form::field('dcckeditor_format_tags', 100, 255, $dcckeditor_format_tags); ?> 72 72 </p> 73 73 <p class="clear form-note"> 74 <?php echo __('Default formats are p;h1;h2;h3;h4;h5;h6;pre;address'); ?>74 <?php echo __('Default formats are p;h1;h2;h3;h4;h5;h6;pre;address'); ?> 75 75 </p> 76 76 <p> 77 <?php echo form::checkbox('dcckeditor_table_button', 1, $dcckeditor_table_button); ?>77 <?php echo form::checkbox('dcckeditor_table_button', 1, $dcckeditor_table_button); ?> 78 78 <label class="classic" for="dcckeditor_table_button"> 79 <?php echo __('Add table button'); ?>79 <?php echo __('Add table button'); ?> 80 80 </label> 81 81 </p> 82 82 <p> 83 <?php echo form::checkbox('dcckeditor_clipboard_buttons', 1, $dcckeditor_clipboard_buttons); ?>83 <?php echo form::checkbox('dcckeditor_clipboard_buttons', 1, $dcckeditor_clipboard_buttons); ?> 84 84 <label class="classic" for="dcckeditor_clipboard_buttons"> 85 <?php echo __('Add clipboard buttons'); ?>85 <?php echo __('Add clipboard buttons'); ?> 86 86 </label> 87 87 </p> 88 88 <p class="clear form-note"> 89 <?php echo __('Copy, Paste, Paste Text, Paste from Word'); ?>89 <?php echo __('Copy, Paste, Paste Text, Paste from Word'); ?> 90 90 </p> 91 91 <p> 92 <?php echo form::checkbox('dcckeditor_disable_native_spellchecker', 1, $dcckeditor_disable_native_spellchecker); ?>92 <?php echo form::checkbox('dcckeditor_disable_native_spellchecker', 1, $dcckeditor_disable_native_spellchecker); ?> 93 93 <label class="classic" for="dcckeditor_disable_native_spellchecker"> 94 <?php echo __('Disables the built-in spell checker if the browser provides one'); ?>94 <?php echo __('Disables the built-in spell checker if the browser provides one'); ?> 95 95 </label> 96 96 </p> … … 100 100 <input name="p" type="hidden" value="dcCKEditor"/> 101 101 <?php echo $core-> 102 formNonce();?>103 <input name="saveconfig" type="submit" value="<?php echo __('Save configuration'); ?>"/>102 formNonce(); ?> 103 <input name="saveconfig" type="submit" value="<?php echo __('Save configuration'); ?>"/> 104 104 </p> 105 105 </form>
Note: See TracChangeset
for help on using the changeset viewer.