[2738] | 1 | <html> |
---|
[2972] | 2 | <head> |
---|
| 3 | <title>dcCKEditor</title> |
---|
| 4 | </head> |
---|
| 5 | <body> |
---|
| 6 | <?php echo dcPage::breadcrumb(array(__('Plugins') => '',__('dcCKEditor') => '')).dcPage::notices(); ?> |
---|
[2738] | 7 | |
---|
[2972] | 8 | <?php if ($is_admin):?> |
---|
| 9 | <h3 class="hidden-if-js"><?php echo __('Settings');?></h3> |
---|
| 10 | <form action="<?php echo $p_url;?>" method="post" enctype="multipart/form-data"> |
---|
| 11 | <div class="fieldset"> |
---|
| 12 | <h3><?php echo __('Plugin activation');?></h3> |
---|
| 13 | <p> |
---|
| 14 | <label class="classic" for="dcckeditor_active"> |
---|
| 15 | <?php echo form::checkbox('dcckeditor_active', 1, $dcckeditor_active);?> |
---|
| 16 | <?php echo __('Enable dcCKEditor plugin');?> |
---|
| 17 | </label> |
---|
| 18 | </p> |
---|
| 19 | </div> |
---|
[2738] | 20 | |
---|
[2972] | 21 | <?php if ($dcckeditor_active):?> |
---|
| 22 | <div class="fieldset"> |
---|
| 23 | <h3><?php echo __('Options'); ?></h3> |
---|
| 24 | <p> |
---|
| 25 | <?php echo form::checkbox('dcckeditor_alignment_buttons', 1, $dcckeditor_alignment_buttons); ?> |
---|
| 26 | <label class="classic" for="dcckeditor_alignment_buttons"> <?php echo __('Add alignment buttons');?></label> |
---|
| 27 | </p> |
---|
| 28 | <p> |
---|
| 29 | <?php echo form::checkbox('dcckeditor_list_buttons', 1, $dcckeditor_list_buttons); ?> |
---|
| 30 | <label class="classic" for="dcckeditor_list_buttons"> <?php echo __('Add lists buttons');?></label> |
---|
| 31 | </p> |
---|
| 32 | <p> |
---|
| 33 | <?php echo form::checkbox('dcckeditor_textcolor_button', 1, $dcckeditor_textcolor_button); ?> |
---|
| 34 | <label class="classic" for="dcckeditor_textcolor_button"> <?php echo __('Add text color button');?></label> |
---|
| 35 | </p> |
---|
| 36 | <p> |
---|
| 37 | <?php echo form::checkbox('dcckeditor_cancollapse_button', 1, $dcckeditor_cancollapse_button); ?> |
---|
| 38 | <label class="classic" for="dcckeditor_cancollapse_button"> <?php echo __('Add collapse button');?></label> |
---|
| 39 | </p> |
---|
| 40 | <p> |
---|
| 41 | <?php echo form::checkbox('dcckeditor_format_select', 1, $dcckeditor_format_select);?> |
---|
| 42 | <label class="classic" for="dcckeditor_format_select"> <?php echo __('Add format selection');?></label> |
---|
| 43 | </p> |
---|
| 44 | <p> |
---|
| 45 | <label class="classic" for="dcckeditor_format_tags"> <?php echo __('Custom formats');?></label> |
---|
| 46 | <?php echo form::field('dcckeditor_format_tags',100,255, $dcckeditor_format_tags);?> |
---|
| 47 | </p> |
---|
| 48 | <p class="clear form-note"> |
---|
| 49 | <?php echo __('Default formats are p;h1;h2;h3;h4;h5;h6;pre;address');?> |
---|
| 50 | </p> |
---|
| 51 | <p> |
---|
| 52 | <?php echo form::checkbox('dcckeditor_table_button', 1, $dcckeditor_table_button);?> |
---|
| 53 | <label class="classic" for="dcckeditor_table_button"> <?php echo __('Add table button');?></label> |
---|
| 54 | </p> |
---|
| 55 | <p> |
---|
| 56 | <?php echo form::checkbox('dcckeditor_clipboard_buttons', 1, $dcckeditor_clipboard_buttons);?> |
---|
| 57 | <label class="classic" for="dcckeditor_clipboard_buttons"> <?php echo __('Add clipboard buttons');?></label> |
---|
| 58 | </p> |
---|
| 59 | <p class="clear form-note"> |
---|
| 60 | <?php echo __('Copy, Paste, Paste Text, Paste from Word');?> |
---|
| 61 | </p> |
---|
[3052] | 62 | <p> |
---|
| 63 | <?php echo form::checkbox('dcckeditor_disable_native_spellchecker', 1, $dcckeditor_disable_native_spellchecker);?> |
---|
| 64 | <label class="classic" for="dcckeditor_disable_native_spellchecker"> <?php echo __('Disables the built-in spell checker if the browser provides one');?></label> |
---|
| 65 | </p> |
---|
[2972] | 66 | </div> |
---|
| 67 | <?php endif;?> |
---|
[2855] | 68 | |
---|
[2972] | 69 | <p> |
---|
| 70 | <input type="hidden" name="p" value="dcCKEditor"/> |
---|
| 71 | <?php echo $core->formNonce();?> |
---|
| 72 | <input type="submit" name="saveconfig" value="<?php echo __('Save configuration');?>" /> |
---|
| 73 | </p> |
---|
| 74 | </form> |
---|
| 75 | <?php endif;?> |
---|
[2855] | 76 | |
---|
[2972] | 77 | <?php dcPage::helpBlock('dcCKEditor');?> |
---|
| 78 | </body> |
---|
[2738] | 79 | </html> |
---|