PluginProbe ʕ •ᴥ•ʔ
Beaver Builder Page Builder – Drag and Drop Website Builder / 1.4.3
Beaver Builder Page Builder – Drag and Drop Website Builder v1.4.3
2.8.6.1 2.8.6.2 2.9.0.5 2.9.1.1 2.9.2.1 2.9.3.1 2.9.3.2 2.9.4 2.9.4.1 2.9.4.2 trunk 1.10.4 1.10.5.1 1.10.6.3 1.10.6.4 1.10.6.5 1.10.7 1.10.8.3 1.10.9 1.10.9.1 1.10.9.2 1.11 1.3.6 1.3.7 1.3.8 1.3.8.1 1.3.8.2 1.3.9 1.4.0 1.4.1 1.4.2 1.4.3 1.4.5 1.4.6 1.4.8 1.5.0 1.5.3 1.5.5 1.5.6 1.5.9 1.6.0.1 1.6.1.1 1.6.2 1.6.2.1 1.6.4 1.6.4.1 1.6.4.3 1.6.4.4 1.6.4.7 1.7.1 1.7.3 1.7.4 1.7.5 1.7.8 1.8.1 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7.1 1.8.8 1.9.1 1.9.2 1.9.4 1.9.5.1 1.9.5.3 2.0.3.2 2.0.4.1 2.0.4.2 2.0.4.3 2.0.4.4 2.0.5 2.0.6 2.0.6.2 2.0.6.3 2.0.6.4 2.1.1.2 2.1.1.3 2.1.2.2 2.1.2.4 2.1.3.4 2.1.4.1 2.1.4.2 2.1.4.3 2.1.4.5 2.1.6.3 2.1.7.2 2.10.0.6 2.10.1.2 2.10.1.5 2.10.2.2 2.2.0.6 2.2.1.4 2.2.1.5 2.2.2.5 2.2.4.3 2.2.5.3 2.2.6.1 2.2.6.3 2.3.1.1 2.3.2.5 2.3.2.8 2.4.0.5 2.4.1.2 2.4.1.3 2.4.2 2.4.2.1 2.4.2.2 2.4.2.4 2.4.2.5 2.5.1 2.5.1.1 2.5.1.3 2.5.2.1 2.5.2.3 2.5.3.1 2.5.4.2 2.5.4.3 2.5.4.4 2.5.4.5 2.5.4.6 2.5.5.3 2.5.5.5 2.6.0.3 2.6.1.4 2.6.2 2.6.2.3 2.6.3 2.6.3.1 2.6.3.2 2.7.0.5 2.7.1.1 2.7.2 2.7.2.1 2.7.3 2.7.3.1 2.7.3.2 2.7.4.1 2.7.4.2 2.7.4.3 2.7.4.4 2.7.4.5 2.8.0.4 2.8.0.5 2.8.0.7 2.8.1.1 2.8.1.2 2.8.1.3 2.8.2.2 2.8.3.1 2.8.3.2 2.8.3.4 2.8.3.5 2.8.3.6 2.8.3.7 2.8.3.9 2.8.4.1 2.8.4.2 2.8.4.3 2.8.4.4 2.8.5.3
beaver-builder-lite-version / includes / field-code.php
beaver-builder-lite-version / includes Last commit date
updater 11 years ago admin-posts.php 11 years ago admin-settings.php 11 years ago column-css.php 11 years ago column-group.php 11 years ago column-settings.php 11 years ago compatibility.php 11 years ago field-code.php 11 years ago field-color.php 11 years ago field-editor.php 11 years ago field-form.php 11 years ago field-icon.php 11 years ago field-layout.php 11 years ago field-link.php 11 years ago field-multiple-photos.php 11 years ago field-photo-sizes.php 11 years ago field-photo.php 11 years ago field-post-type.php 11 years ago field-select.php 11 years ago field-suggest.php 11 years ago field-text.php 11 years ago field-textarea.php 11 years ago field-video.php 11 years ago field.php 11 years ago global-settings.php 11 years ago icon-selector.php 11 years ago jquery.php 11 years ago js-config.php 11 years ago loop-settings.php 11 years ago module-settings.php 11 years ago module.php 11 years ago row-css.php 11 years ago row-js.php 11 years ago row-settings.php 11 years ago row-video.php 11 years ago row.php 11 years ago settings.php 11 years ago ui.php 11 years ago updater-config.php 11 years ago user-template-settings.php 11 years ago
field-code.php
29 lines
1 <div class="fl-code-field">
2 <?php $editor_id = 'flcode' . time() . '_' . $name; ?>
3 <textarea id="<?php echo $editor_id; ?>" name="<?php echo $name; ?>" data-editor="<?php echo $field['editor']; ?>" <?php if(isset($field['class'])) echo ' class="'. $field['class'] .'"'; if(isset($field['rows'])) echo ' rows="'. $field['rows'] .'"'; ?>><?php echo htmlspecialchars($value); ?></textarea>
4 <script>
5
6 jQuery(function(){
7
8 var textarea = jQuery('#<?php echo $editor_id; ?>'),
9 mode = textarea.data('editor'),
10 editDiv = jQuery('<div>', {
11 position: 'absolute',
12 height: parseInt(textarea.attr('rows'), 10) * 20
13 }),
14 editor = null;
15
16 editDiv.insertBefore(textarea);
17 textarea.css('display', 'none');
18
19 editor = ace.edit(editDiv[0]);
20 editor.getSession().setValue(textarea.val());
21 editor.getSession().setMode('ace/mode/' + mode);
22
23 editor.getSession().on('change', function(e) {
24 textarea.val(editor.getSession().getValue()).trigger('change');
25 });
26 });
27
28 </script>
29 </div>