PATH:
home
/
letacommog
/
mcr
/
wp-content
/
themes
/
dt-the7
/
inc
/
extensions
/
meta-box
/
inc
/
fields
<?php // Prevent loading this file directly defined( 'ABSPATH' ) || exit; if ( !class_exists( 'RWMB_Wysiwyg_Field' ) ) { class RWMB_Wysiwyg_Field { /** * Enqueue scripts and styles * * @return void */ static function admin_enqueue_scripts() { wp_enqueue_style( 'rwmb-meta-box-wysiwyg', RWMB_CSS_URL . 'wysiwyg.css', array(), RWMB_VER ); } /** * Add field actions * * @return void */ static function add_actions() { // Add TinyMCE script for WP version < 3.3 global $wp_version; if ( version_compare( $wp_version, '3.2.1' ) < 1 ) { add_action( 'admin_print_footer-post.php', 'wp_tiny_mce', 25 ); add_action( 'admin_print_footer-post-new.php', 'wp_tiny_mce', 25 ); } } /** * 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 ) { return ( $field['raw'] ? $new : wpautop( $new ) ); } /** * Get field HTML * * @param string $html * @param mixed $meta * @param array $field * * @return string */ static function html( $html, $meta, $field ) { global $wp_version; if ( version_compare( $wp_version, '3.2.1' ) < 1 ) { return sprintf( '<textarea class="rwmb-wysiwyg theEditor large-text" name="%s" id="%s" cols="60" rows="4">%s</textarea>', $field['field_name'], $field['id'], $meta ); } else { // Using output buffering because wp_editor() echos directly ob_start(); $field['options']['textarea_name'] = $field['field_name']; // Use new wp_editor() since WP 3.3 wp_editor( $meta, $field['id'], $field['options'] ); return ob_get_clean(); } } /** * Normalize parameters for field * * @param array $field * * @return array */ static function normalize_field( $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; } } }
[+]
..
[-] index.php
[edit]
[-] map.php
[edit]
[-] hidden.php
[edit]
[-] taxonomy-advanced.php
[edit]
[-] radio.php
[edit]
[-] file-advanced.php
[edit]
[-] email.php
[edit]
[-] plupload-image.php
[edit]
[-] heading.php
[edit]
[-] thickbox-image.php
[edit]
[-] button.php
[edit]
[-] date.php
[edit]
[-] image-advanced.php
[edit]
[-] textarea.php
[edit]
[-] oembed.php
[edit]
[-] time.php
[edit]
[-] wysiwyg.php
[edit]
[-] datetime.php
[edit]
[-] select-advanced.php
[edit]
[-] file.php
[edit]
[-] checkbox-list.php
[edit]
[-] taxonomy.php
[edit]
[-] color.php
[edit]
[-] post.php
[edit]
[-] text.php
[edit]
[-] select.php
[edit]
[-] divider.php
[edit]
[-] password.php
[edit]
[-] fieldset-text.php
[edit]
[-] text-list.php
[edit]
[-] range.php
[edit]
[-] image.php
[edit]
[-] checkbox.php
[edit]
[-] slider.php
[edit]
[-] number.php
[edit]
[-] url.php
[edit]