PATH:
home
/
letacommog
/
supportleta
/
wp-content
/
themes
/
easyweb
/
inc
/
meta-box
/
inc
/
fields
<?php /** * WYSIWYG (editor) field class. */ class RWMB_Wysiwyg_Field extends RWMB_Field { /** * Array of cloneable editors. * @var array */ static $cloneable_editors = array(); /** * Enqueue scripts and styles. */ static function admin_enqueue_scripts() { wp_enqueue_style( 'rwmb-wysiwyg', RWMB_CSS_URL . 'wysiwyg.css', array(), RWMB_VER ); wp_enqueue_script( 'rwmb-wysiwyg', RWMB_JS_URL . 'wysiwyg.js', array( 'jquery' ), RWMB_VER, true ); } /** * Change field value on save * * @param mixed $new * @param mixed $old * @param int $post_id * @param array $field * @return string */ static function value( $new, $old, $post_id, $field ) { if ( $field['raw'] ) { $meta = $new; } elseif ( $field['clone'] ) { $meta = array_map( 'wpautop', $new ); } else { $meta = wpautop( $new ); } return $meta; } /** * Get field HTML * * @param mixed $meta * @param array $field * @return string */ static function html( $meta, $field ) { // Using output buffering because wp_editor() echos directly ob_start(); $field['options']['textarea_name'] = $field['field_name']; $attributes = self::get_attributes( $field ); // Use new wp_editor() since WP 3.3 wp_editor( $meta, $attributes['id'], $field['options'] ); return ob_get_clean(); } /** * Escape meta for field output * * @param mixed $meta * @return mixed */ static function esc_meta( $meta ) { return $meta; } /** * Normalize parameters for field * * @param array $field * @return array */ static function normalize( $field ) { $field = parent::normalize( $field ); $field = wp_parse_args( $field, array( 'raw' => false, 'options' => array(), ) ); $field['options'] = wp_parse_args( $field['options'], array( 'editor_class' => 'rwmb-wysiwyg', 'dfw' => true, // Use default WordPress full screen UI ) ); // Keep the filter to be compatible with previous versions $field['options'] = apply_filters( 'rwmb_wysiwyg_settings', $field['options'] ); return $field; } }
[+]
..
[-] oembed.php
[edit]
[-] taxonomy-advanced.php
[edit]
[-] email.php
[edit]
[-] autocomplete.php
[edit]
[-] multiple-values.php
[edit]
[-] input-list.php
[edit]
[-] checkbox-list.php
[edit]
[-] button.php
[edit]
[-] object-choice.php
[edit]
[-] image-select.php
[edit]
[-] radio.php
[edit]
[-] fieldset-text.php
[edit]
[-] heading.php
[edit]
[-] hidden.php
[edit]
[-] user.php
[edit]
[-] time.php
[edit]
[-] file-upload.php
[edit]
[-] text-list.php
[edit]
[-] textarea.php
[edit]
[-] url.php
[edit]
[-] key-value.php
[edit]
[-] date.php
[edit]
[-] wysiwyg.php
[edit]
[-] password.php
[edit]
[-] text.php
[edit]
[-] file-advanced.php
[edit]
[-] post.php
[edit]
[-] map.php
[edit]
[-] select-advanced.php
[edit]
[-] plupload-image.php
[edit]
[-] file.php
[edit]
[-] image-upload.php
[edit]
[-] number.php
[edit]
[-] taxonomy.php
[edit]
[-] file-input.php
[edit]
[-] slider.php
[edit]
[-] thickbox-image.php
[edit]
[-] datetime.php
[edit]
[-] divider.php
[edit]
[-] color.php
[edit]
[-] custom-html.php
[edit]
[-] image-advanced.php
[edit]
[-] media.php
[edit]
[-] select-tree.php
[edit]
[-] choice.php
[edit]
[-] input.php
[edit]
[-] range.php
[edit]
[-] select.php
[edit]
[-] switcher.php
[edit]
[-] checkbox.php
[edit]
[-] image.php
[edit]