Esempio n. 1
0
function incsub_support_faqadmin_questions()
{
    global $wpdb, $current_site, $incsub_support_page, $incsub_support_page_long, $wp_version;
    if (!empty($_POST)) {
        // post data received...
        if (!empty($_POST['deleteq']) and $_POST['deleteq'] == 1) {
            // deleting
            check_admin_referer("incsub_faqmanagement_managequestions");
            $wh = 'WHERE (';
            $c = 0;
            foreach ($_POST['delete'] as $key => $val) {
                if (!isset($val['faq_id'])) {
                    continue;
                }
                $count[$val['cat_id']] = !empty($count[$val['cat_id']]) ? $count[$val['cat_id']] + 1 : 1;
                if (is_numeric($val['faq_id']) and is_numeric($key)) {
                    if ($c == 0) {
                        $wh .= $wpdb->prepare(" faq_id = '%s'", $val['faq_id']);
                    } else {
                        $wh .= $wpdb->prepare(" OR faq_id = '%s'", $val['faq_id']);
                    }
                    $c++;
                }
            }
            if (!empty($wh)) {
                // if $wh is empty, there wouldn't be anything to delete.
                $wh .= $wpdb->prepare(") AND site_id = '%d'", $current_site->id);
                $wpdb->query("DELETE FROM " . incsub_support_tablename('faq') . " " . $wh);
                if (!empty($wpdb->rows_affected)) {
                    $delete_text = sprintf(_n('%s question was', '%s questions were', $wpdb->rows_affected, INCSUB_SUPPORT_LANG_DOMAIN), number_format_i18n($wpdb->rows_affected));
                    $sentence = sprintf(__('%1$s removed', INCSUB_SUPPORT_LANG_DOMAIN), $delete_text);
                    $mclass = "updated fade";
                    foreach ($count as $key => $val) {
                        $wpdb->query($wpdb->prepare("UPDATE " . incsub_support_tablename('faq_cats') . " SET qcount = qcount-{$wpdb->rows_affected} WHERE site_id = '%d' AND cat_id = '%d'", $current_site->id, $key));
                    }
                } else {
                    $sentence = __("There wasn't anything to delete.", INCSUB_SUPPORT_LANG_DOMAIN);
                    $mclass = "error";
                }
            }
        } elseif (!empty($_POST['addq']) and $_POST['addq'] == 1) {
            check_admin_referer("incsub_faqmanagement_managequestions");
            if (empty($_POST['question'])) {
                $sentence = __("The question field is empty.", INCSUB_SUPPORT_LANG_DOMAIN);
                $mclass = "error";
            } elseif (empty($_POST['answer'])) {
                $sentence = __("The answer field is empty.", INCSUB_SUPPORT_LANG_DOMAIN);
                $mclass = "error";
            } else {
                $question = esc_html(strip_tags($_POST['question']));
                $answer = esc_html(wpautop($_POST['answer']));
                if (!is_numeric($_POST['category'])) {
                    $the_cat = $wpdb->get_var("SELECT cat_id FROM " . incsub_support_tablename('faq_cats') . " WHERE defcat = '1' AND site_id = '{$current_site->id}'");
                } else {
                    $the_cat = $_POST['category'];
                }
                $wpdb->query($wpdb->prepare("INSERT INTO " . incsub_support_tablename('faq') . " (site_id, cat_id, question, answer) VALUES ( '%d', '%d', '%s', '%s')", $current_site->id, $the_cat, $question, $answer));
                $wpdb->query($wpdb->prepare("UPDATE " . incsub_support_tablename('faq_cats') . " SET qcount = qcount+1 WHERE site_id = '%d' AND cat_id = '%d'", $current_site->id, $the_cat));
                if (!empty($wpdb->insert_id)) {
                    $sentence = __("New Q&A inserted successfully.", INCSUB_SUPPORT_LANG_DOMAIN);
                    $mclass = "updated fade";
                } else {
                    $sentence = __("Something happened, and nothing was inserted. Check your error logs.", INCSUB_SUPPORT_LANG_DOMAIN);
                    $mclass = "error";
                }
            }
        } elseif (!empty($_POST['updateq']) and $_POST['updateq'] == 1) {
            check_admin_referer("incsub_faqmanagement_managequestions");
            if (empty($_POST['question'])) {
                $sentence = __("The question field is empty.", INCSUB_SUPPORT_LANG_DOMAIN);
                $mclass = "error";
            } elseif (empty($_POST['answer'])) {
                $sentence = __("The answer field is empty.", INCSUB_SUPPORT_LANG_DOMAIN);
                $mclass = "error";
            } elseif (!is_numeric($_POST['faq_id'])) {
                $sentence = __("Invalid identification for the question being updated.", INCSUB_SUPPORT_LANG_DOMAIN);
                $mclass = "error";
            } else {
                $question = esc_html(strip_tags($_POST['question']));
                $answer = esc_html(wpautop($_POST['answer']));
                if (!is_numeric($_POST['category'])) {
                    $the_cat = $wpdb->get_var("SELECT cat_id FROM " . incsub_support_tablename('faq_cats') . " WHERE defcat = '1' AND site_id = '{$current_site->id}'");
                } else {
                    $the_cat = $_POST['category'];
                    $the_id = $_POST['faq_id'];
                }
                $wpdb->query($wpdb->prepare("UPDATE " . incsub_support_tablename('faq') . " SET site_id = '%d', cat_id = '%d', question = '%s', answer = '%s' WHERE faq_id = '%d' AND site_id = '%d'", $current_site->id, $the_cat, $question, $answer, $the_id, $current_site->id));
                if (!empty($wpdb->rows_affected)) {
                    $sentence = __("Question/Answer updated successfully.", INCSUB_SUPPORT_LANG_DOMAIN);
                    $mclass = "updated fade";
                    if (is_numeric($_POST['old_cat_id']) and $_POST['old_cat_id'] != $the_cat) {
                        // we changed cats, and the update was a success;
                        $wpdb->query($wpdb->prepare("UPDATE " . incsub_support_tablename('faq_cats') . " SET qcount = qcount-1 WHERE cat_id = '%d' AND site_id = '%d'", $_POST['old_cat_id'], $current_site->id));
                        $wpdb->query($wpdb->prepare("UPDATE " . incsub_support_tablename('faq_cats') . " SET qcount = qcount+1 WHERE cat_id = '%d' AND site_id = '%d'", $the_cat, $current_site->id));
                    }
                } else {
                    $sentence = __("Something happened, and nothing was updated. Check your error logs.", INCSUB_SUPPORT_LANG_DOMAIN);
                    $mclass = "error";
                }
            }
        }
        ?>
		<div class="<?php 
        echo $mclass;
        ?>
"><p><?php 
        echo $sentence;
        ?>
</p></div>
<?php 
    }
    $questions = $wpdb->get_results("\r\n\t\tSELECT\r\n\t\t\tq.faq_id AS faq_id, q.cat_id AS cat_id, q.question AS question, q.answer AS answer, c.cat_name AS cat_name\r\n\t\tFROM " . incsub_support_tablename('faq') . " as q\r\n\t\tLEFT JOIN " . incsub_support_tablename('faq_cats') . " AS c ON ( q.cat_id = c.cat_id )\r\n\t\tWHERE q.site_id = '{$current_site->id}'\r\n\t\tORDER BY c.cat_name, q.question ASC\r\n\t");
    if (!empty($_GET['qid']) and is_numeric($_GET['qid'])) {
        // we need to edit a post;
        $editq = $wpdb->get_results("SELECT faq_id, cat_id, question, answer FROM " . incsub_support_tablename('faq') . " WHERE site_id = '{$current_site->id}' AND faq_id = '" . $_GET['qid'] . "' LIMIT 1");
        if (empty($editq[0])) {
            ?>
		<div class="error"><p><?php 
            _e("That question does not exist.", INCSUB_SUPPORT_LANG_DOMAIN);
            ?>
</p></div>
<?php 
        } else {
            $editq = $editq[0];
            ?>
			
		<h2><?php 
            _e("Editing: ", INCSUB_SUPPORT_LANG_DOMAIN);
            echo $editq->question;
            ?>
</h2>
			<form id="addquestion" action="<?php 
            print $incsub_support_page;
            ?>
?page=faq-manager&action=questions" method="post">
		<?php 
            wp_nonce_field("incsub_faqmanagement_managequestions");
            incsub_support_faqadmin_postbox($editq);
            ?>
				<p class="submit" style="padding: 10px;">
					<input type="hidden" name="faq_id" value="<?php 
            echo $editq->faq_id;
            ?>
" />
					<input type="hidden" name="old_cat_id" value="<?php 
            echo $editq->cat_id;
            ?>
" />
					<input type="hidden" name="updateq" value="1" />
					<input type="submit" class="button" value="Update" />
				</p>
			</form>
<?php 
            if (version_compare($wp_version, "3.3", "<")) {
                wp_tiny_mce(false, array("editor_selector" => "answer"));
                wp_print_scripts(array('wpdialogs-popup'));
                wp_print_styles('wp-jquery-ui-dialog');
                require_once ABSPATH . 'wp-admin/includes/template.php';
                require_once ABSPATH . 'wp-admin/includes/internal-linking.php';
                ?>
<div style="display:none;"><?php 
                wp_link_dialog();
                ?>
</div><?php 
                wp_print_scripts('wplink');
                wp_print_styles('wplink');
            }
        }
    }
    ?>
	<script type="text/javascript" language="JavaScript"><!--
		function FAQReverseDisplay(d) {
			jQuery('#'+d).toggleClass('invisible');
		}
		//-->
	</script>
	
	<h2><?php 
    _e("FAQ Manager", INCSUB_SUPPORT_LANG_DOMAIN);
    ?>
</h2>
	<div class="handlediv">
		<h3 class='hndle'>
			<span><?php 
    _e("Manage Questions/Answers", INCSUB_SUPPORT_LANG_DOMAIN);
    ?>
</span>
			<a href="<?php 
    print $incsub_support_page;
    ?>
?page=faq-manager&amp;action=categories" class="rbutton"><strong><?php 
    _e('Manage FAQ Categories');
    ?>
</strong></a>
 			<a href="#addquestion" class="rbutton"><strong><?php 
    _e("Add New Question", INCSUB_SUPPORT_LANG_DOMAIN);
    ?>
</strong></a>
			<br class="clear" />
		</h3>
		<div class="youhave">
			<form id="managecats" action="<?php 
    print $incsub_support_page;
    ?>
?page=faq-manager&action=questions" method="post">
				<?php 
    wp_nonce_field("incsub_faqmanagement_managequestions");
    ?>

<?php 
    $cat_name = '';
    $c = 0;
    foreach ($questions as $question) {
        if ($cat_name != $question->cat_name) {
            if (!empty($cat_name) and $cat_name != $question->cat_name) {
                ?>
					</tbody>
				</table>
				<br /><br />
<?php 
            }
            ?>
				<h3 style="font-size: 140%; text-align: left; padding: 0; margin: 0;"><a href="#" style="text-decoration: none;" onclick="javascript:FAQReverseDisplay('catbody-<?php 
            echo $question->cat_id;
            ?>
')"><?php 
            _e("FAQ Category: ", INCSUB_SUPPORT_LANG_DOMAIN);
            echo $question->cat_name;
            ?>
 <small style="font-size: 12px;">(<?php 
            _e("view questions", INCSUB_SUPPORT_LANG_DOMAIN);
            ?>
)</small></a></h3>
				<table class="widefat" id="catbody-<?php 
            echo $question->cat_id;
            ?>
" style="width: 100%;" width="100%" class="invisible">
					<thead>
						<tr>
							<th scope="col" class="check-column">&nbsp;</th>
							<th scope="col" align="left" style="text-align: left; width: 40%;"><?php 
            _e("Question", INCSUB_SUPPORT_LANG_DOMAIN);
            ?>
</th>
							<th scope="col" align="left" style="text-align: left; width: 45%;"><?php 
            _e("Answer", INCSUB_SUPPORT_LANG_DOMAIN);
            ?>
</th>
							<th scope="col" align="left" style="text-align: left;" width="15%"><?php 
            _e("Option(s)", INCSUB_SUPPORT_LANG_DOMAIN);
            ?>
</th>
						</tr>
					</thead>
					<tbody class="list:cat">
<?php 
            $cat_name = $question->cat_name;
        }
        ?>
						<tr id='question-4' class='alternate'>
							<th scope='row' class='check-column'><input type='checkbox' name='delete[<?php 
        print $c;
        ?>
][faq_id]' value='<?php 
        echo $question->faq_id;
        ?>
' /><input type="hidden" name="delete[<?php 
        print $c;
        ?>
][cat_id]" value="<?php 
        echo $question->cat_id;
        ?>
" /></th>
							<td valign="top">
								<?php 
        echo $question->question;
        ?>
							</td>
							<td valign="top">
								<?php 
        echo incsub_support_stripslashes(html_entity_decode($question->answer));
        ?>
							</td>
							<td valign="middle" style="vertical-align: middle;"><a href="<?php 
        print $incsub_support_page;
        ?>
?page=faq-manager&amp;action=questions&amp;qid=<?php 
        echo $question->faq_id;
        ?>
" class="button" title="edit this"><?php 
        _e("Edit This", INCSUB_SUPPORT_LANG_DOMAIN);
        ?>
</a></td>
						</tr>
<?php 
        $c++;
    }
    ?>
					</tbody>
				</table>
				<p class="submit" style="padding: 10px;">
					<input type="hidden" name="deleteq" value="1" />
					<input type="submit" class="button" value="<?php 
    _e("Delete Questions", INCSUB_SUPPORT_LANG_DOMAIN);
    ?>
" />
				</p>
			</form>
			<br /><br />
	<?php 
    if (!isset($_GET['qid']) && empty($_GET['qid'])) {
        ?>
			<h2><?php 
        _e('Add New Question', INCSUB_SUPPORT_LANG_DOMAIN);
        ?>
</h2>
			<form id="addquestion" action="<?php 
        print $incsub_support_page;
        ?>
?page=faq-manager&action=questions" method="post">
		<?php 
        wp_nonce_field("incsub_faqmanagement_managequestions");
        incsub_support_faqadmin_postbox();
        ?>
				<p class="submit" style="padding: 10px;">
					<input type="hidden" name="addq" value="1" />
					<input type="submit" class="button" value="<?php 
        _e('Add New Question', INCSUB_SUPPORT_LANG_DOMAIN);
        ?>
" />
				</p>
			</form>
			<?php 
        if (version_compare($wp_version, "3.3", "<")) {
            wp_tiny_mce(false, array("editor_selector" => "answer"));
            wp_print_scripts(array('wpdialogs-popup'));
            wp_print_styles('wp-jquery-ui-dialog');
            require_once ABSPATH . 'wp-admin/includes/template.php';
            require_once ABSPATH . 'wp-admin/includes/internal-linking.php';
            ?>
<div style="display:none;"><?php 
            wp_link_dialog();
            ?>
</div><?php 
            wp_print_scripts('wplink');
            wp_print_styles('wplink');
        }
    }
    ?>
		</div>
	</div>
<?php 
}
Esempio n. 2
0
function wp_preload_dialogs($init)
{
    $plugins = preg_split('/[ ,-]+/', $init['plugins']);
    if (in_array('wpdialogs', $plugins, true)) {
        wp_print_scripts('wpdialogs-popup');
        wp_print_styles('wp-jquery-ui-dialog');
    }
    if (in_array('wplink', $plugins, true)) {
        require_once ABSPATH . 'wp-admin/includes/internal-linking.php';
        ?>
<div style="display:none;"><?php 
        wp_link_dialog();
        ?>
</div><?php 
        wp_print_scripts('wplink');
        wp_print_styles('wplink');
    }
    // Distraction Free Writing mode
    if (in_array('wpfullscreen', $plugins, true)) {
        wp_fullscreen_html();
        wp_print_scripts('wp-fullscreen');
    }
    wp_print_scripts('word-count');
}
Esempio n. 3
0
    /**
     * Adds the TinyMCE editor used on the Write and Edit screens.
     *
     * @package WordPress
     * @since 2.7.0
     *
     * TinyMCE is loaded separately from other Javascript by using wp-tinymce.php. It outputs concatenated
     * and optionaly pre-compressed version of the core and all default plugins. Additional plugins are loaded
     * directly by TinyMCE using non-blocking method. Custom plugins can be refreshed by adding a query string
     * to the URL when queueing them with the mce_external_plugins filter.
     *
     * @param bool $teeny optional Output a trimmed down version used in Press This.
     * @param mixed $settings optional An array that can add to or overwrite the default TinyMCE settings.
     */
    function tiny_mce($teeny = false, $settings = false)
    {
        global $concatenate_scripts, $compress_scripts, $tinymce_version, $editor_styles;
        if (!user_can_richedit()) {
            return;
        }
        $baseurl = includes_url('js/tinymce');
        $mce_locale = '' == get_locale() ? 'en' : strtolower(substr(get_locale(), 0, 2));
        // only ISO 639-1
        /*
        The following filter allows localization scripts to change the languages displayed in the spellchecker's drop-down menu.
        By default it uses Google's spellchecker API, but can be configured to use PSpell/ASpell if installed on the server.
        The + sign marks the default language. More information:
        http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/spellchecker
        */
        $mce_spellchecker_languages = apply_filters('mce_spellchecker_languages', '+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv');
        if ($teeny) {
            $plugins = apply_filters('teeny_mce_plugins', array('inlinepopups', 'fullscreen', 'wordpress', 'wplink', 'wpdialogs'));
            $ext_plugins = '';
        } else {
            $plugins = array('inlinepopups', 'spellchecker', 'paste', 'wordpress', 'fullscreen', 'wpeditimage', 'wpgallery', 'tabfocus', 'wplink', 'wpdialogs');
            /*
            The following filter takes an associative array of external plugins for TinyMCE in the form 'plugin_name' => 'url'.
            It adds the plugin's name to TinyMCE's plugins init and the call to PluginManager to load the plugin.
            The url should be absolute and should include the js file name to be loaded. Example:
            array( 'myplugin' => 'http://my-site.com/wp-content/plugins/myfolder/mce_plugin.js' )
            If the plugin uses a button, it should be added with one of the "$mce_buttons" filters.
            */
            $mce_external_plugins = apply_filters('mce_external_plugins', array());
            $ext_plugins = '';
            if (!empty($mce_external_plugins)) {
                /*
                The following filter loads external language files for TinyMCE plugins.
                It takes an associative array 'plugin_name' => 'path', where path is the
                include path to the file. The language file should follow the same format as
                /tinymce/langs/wp-langs.php and should define a variable $strings that
                holds all translated strings.
                When this filter is not used, the function will try to load {mce_locale}.js.
                If that is not found, en.js will be tried next.
                */
                $mce_external_languages = apply_filters('mce_external_languages', array());
                $loaded_langs = array();
                $strings = '';
                if (!empty($mce_external_languages)) {
                    foreach ($mce_external_languages as $name => $path) {
                        if (@is_file($path) && @is_readable($path)) {
                            include_once $path;
                            $ext_plugins .= $strings . "\n";
                            $loaded_langs[] = $name;
                        }
                    }
                }
                foreach ($mce_external_plugins as $name => $url) {
                    if (is_ssl()) {
                        $url = str_replace('http://', 'https://', $url);
                    }
                    $plugins[] = '-' . $name;
                    $plugurl = dirname($url);
                    $strings = $str1 = $str2 = '';
                    if (!in_array($name, $loaded_langs)) {
                        $path = str_replace(WP_PLUGIN_URL, '', $plugurl);
                        $path = WP_PLUGIN_DIR . $path . '/langs/';
                        if (function_exists('realpath')) {
                            $path = trailingslashit(realpath($path));
                        }
                        if (@is_file($path . $mce_locale . '.js')) {
                            $strings .= @file_get_contents($path . $mce_locale . '.js') . "\n";
                        }
                        if (@is_file($path . $mce_locale . '_dlg.js')) {
                            $strings .= @file_get_contents($path . $mce_locale . '_dlg.js') . "\n";
                        }
                        if ('en' != $mce_locale && empty($strings)) {
                            if (@is_file($path . 'en.js')) {
                                $str1 = @file_get_contents($path . 'en.js');
                                $strings .= preg_replace('/([\'"])en\\./', '$1' . $mce_locale . '.', $str1, 1) . "\n";
                            }
                            if (@is_file($path . 'en_dlg.js')) {
                                $str2 = @file_get_contents($path . 'en_dlg.js');
                                $strings .= preg_replace('/([\'"])en\\./', '$1' . $mce_locale . '.', $str2, 1) . "\n";
                            }
                        }
                        if (!empty($strings)) {
                            $ext_plugins .= "\n" . $strings . "\n";
                        }
                    }
                    $ext_plugins .= 'tinyMCEPreInit.load_ext("' . $plugurl . '", "' . $mce_locale . '");' . "\n";
                    $ext_plugins .= 'tinymce.PluginManager.load("' . $name . '", "' . $url . '");' . "\n";
                }
            }
        }
        if ($teeny) {
            $mce_buttons = apply_filters('teeny_mce_buttons', array('bold, italic, underline, blockquote, separator, strikethrough, bullist, numlist,justifyleft, justifycenter, justifyright, undo, redo, link, unlink, fullscreen'));
            $mce_buttons = implode($mce_buttons, ',');
            $mce_buttons_2 = $mce_buttons_3 = $mce_buttons_4 = '';
        } else {
            $mce_buttons = apply_filters('mce_buttons', array('bold', 'italic', 'strikethrough', '|', 'bullist', 'numlist', 'blockquote', '|', 'justifyleft', 'justifycenter', 'justifyright', '|', 'link', 'unlink', 'wp_more', '|', 'spellchecker', 'fullscreen', 'wp_adv'));
            $mce_buttons = implode($mce_buttons, ',');
            $mce_buttons_2 = array('formatselect', 'underline', 'justifyfull', 'forecolor', '|', 'pastetext', 'pasteword', 'removeformat', '|', 'charmap', '|', 'outdent', 'indent', '|', 'undo', 'redo', 'wp_help');
            $mce_buttons_2 = apply_filters('mce_buttons_2', $mce_buttons_2);
            $mce_buttons_2 = implode($mce_buttons_2, ',');
            $mce_buttons_3 = apply_filters('mce_buttons_3', array());
            $mce_buttons_3 = implode($mce_buttons_3, ',');
            $mce_buttons_4 = apply_filters('mce_buttons_4', array());
            $mce_buttons_4 = implode($mce_buttons_4, ',');
        }
        $no_captions = (bool) apply_filters('disable_captions', '');
        // TinyMCE init settings
        $initArray = array('mode' => 'specific_textareas', 'editor_selector' => 'theEditor', 'width' => '100%', 'theme' => 'advanced', 'skin' => 'wp_theme', 'theme_advanced_buttons1' => $mce_buttons, 'theme_advanced_buttons2' => $mce_buttons_2, 'theme_advanced_buttons3' => $mce_buttons_3, 'theme_advanced_buttons4' => $mce_buttons_4, 'language' => $mce_locale, 'spellchecker_languages' => $mce_spellchecker_languages, 'theme_advanced_toolbar_location' => 'top', 'theme_advanced_toolbar_align' => 'left', 'theme_advanced_statusbar_location' => 'bottom', 'theme_advanced_resizing' => true, 'theme_advanced_resize_horizontal' => false, 'dialog_type' => 'modal', 'formats' => "{\n\t\talignleft : [\n\t\t    {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li', styles : {textAlign : 'left'}},\n\t\t    {selector : 'img,table', classes : 'alignleft'}\n\t\t],\n\t\taligncenter : [\n\t\t    {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li', styles : {textAlign : 'center'}},\n\t\t    {selector : 'img,table', classes : 'aligncenter'}\n\t\t],\n\t\talignright : [\n\t\t    {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li', styles : {textAlign : 'right'}},\n\t\t    {selector : 'img,table', classes : 'alignright'}\n\t\t],\n\t\tstrikethrough : {inline : 'del'}\n\t    }", 'relative_urls' => false, 'remove_script_host' => false, 'convert_urls' => false, 'apply_source_formatting' => false, 'remove_linebreaks' => true, 'gecko_spellcheck' => true, 'entities' => '38,amp,60,lt,62,gt', 'accessibility_focus' => true, 'tabfocus_elements' => 'major-publishing-actions', 'media_strict' => false, 'paste_remove_styles' => true, 'paste_remove_spans' => true, 'paste_strip_class_attributes' => 'all', 'paste_text_use_dialog' => true, 'wpeditimage_disable_captions' => $no_captions, 'plugins' => implode(',', $plugins));
        if (!empty($editor_styles) && is_array($editor_styles)) {
            $mce_css = array();
            $style_uri = get_stylesheet_directory_uri();
            if (!is_child_theme()) {
                foreach ($editor_styles as $file) {
                    $mce_css[] = "{$style_uri}/{$file}";
                }
            } else {
                $style_dir = get_stylesheet_directory();
                $template_uri = get_template_directory_uri();
                $template_dir = get_template_directory();
                foreach ($editor_styles as $file) {
                    if (file_exists("{$template_dir}/{$file}")) {
                        $mce_css[] = "{$template_uri}/{$file}";
                    }
                    if (file_exists("{$style_dir}/{$file}")) {
                        $mce_css[] = "{$style_uri}/{$file}";
                    }
                }
            }
            $mce_css = implode(',', $mce_css);
        } else {
            $mce_css = '';
        }
        $mce_css = trim(apply_filters('mce_css', $mce_css), ' ,');
        if (!empty($mce_css)) {
            $initArray['content_css'] = $mce_css;
        }
        if (is_array($settings)) {
            $initArray = array_merge($initArray, $settings);
        }
        // For people who really REALLY know what they're doing with TinyMCE
        // You can modify initArray to add, remove, change elements of the config before tinyMCE.init
        // Setting "valid_elements", "invalid_elements" and "extended_valid_elements" can be done through "tiny_mce_before_init".
        // Best is to use the default cleanup by not specifying valid_elements, as TinyMCE contains full set of XHTML 1.0.
        if ($teeny) {
            $initArray = apply_filters('teeny_mce_before_init', $initArray);
        } else {
            $initArray = apply_filters('tiny_mce_before_init', $initArray);
        }
        if (empty($initArray['theme_advanced_buttons3']) && !empty($initArray['theme_advanced_buttons4'])) {
            $initArray['theme_advanced_buttons3'] = $initArray['theme_advanced_buttons4'];
            $initArray['theme_advanced_buttons4'] = '';
        }
        if (!isset($concatenate_scripts)) {
            script_concat_settings();
        }
        $language = $initArray['language'];
        $compressed = $compress_scripts && $concatenate_scripts && isset($_SERVER['HTTP_ACCEPT_ENCODING']) && false !== strpos(strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip');
        /**
         * Deprecated
         *
         * The tiny_mce_version filter is not needed since external plugins are loaded directly by TinyMCE.
         * These plugins can be refreshed by appending query string to the URL passed to mce_external_plugins filter.
         * If the plugin has a popup dialog, a query string can be added to the button action that opens it (in the plugin's code).
         */
        $version = apply_filters('tiny_mce_version', '');
        $version = 'ver=' . $tinymce_version . $version;
        if ('en' != $language) {
            include_once ABSPATH . WPINC . '/js/tinymce/langs/wp-langs.php';
        }
        $mce_options = '';
        foreach ($initArray as $k => $v) {
            if (is_bool($v)) {
                $val = $v ? 'true' : 'false';
                $mce_options .= $k . ':' . $val . ', ';
                continue;
            } elseif (!empty($v) && is_string($v) && ('{' == $v[0] || '[' == $v[0])) {
                $mce_options .= $k . ':' . $v . ', ';
                continue;
            }
            $mce_options .= $k . ':"' . $v . '", ';
        }
        $mce_options = rtrim(trim($mce_options), '\\n\\r,');
        ?>
	
	<script type="text/javascript">
	/* <![CDATA[ */
	ajaxurl = "<?php 
        echo site_url() . "/wp-admin/admin-ajax.php";
        ?>
";
	tinyMCEPreInit = {
		base : "<?php 
        echo $baseurl;
        ?>
",
		suffix : "",
		query : "<?php 
        echo $version;
        ?>
",
		mceInit : {<?php 
        echo $mce_options;
        ?>
},
		load_ext : function(url,lang){var sl=tinymce.ScriptLoader;sl.markDone(url+'/langs/'+lang+'.js');sl.markDone(url+'/langs/'+lang+'_dlg.js');}
	};
	/* ]]> */
	</script>
    <?php 
        if ($compressed) {
            echo "<script type='text/javascript' src='{$baseurl}/wp-tinymce.php?c=1&amp;{$version}'></script>\n";
        } else {
            echo "<script type='text/javascript' src='{$baseurl}/tiny_mce.js?{$version}'></script>\n";
        }
        if ('en' != $language && isset($lang)) {
            echo "<script type='text/javascript'>\n{$lang}\n</script>\n";
        } else {
            echo "<script type='text/javascript' src='{$baseurl}/langs/wp-langs-en.js?{$version}'></script>\n";
        }
        ?>
	<script type="text/javascript">
	/* <![CDATA[ */
	<?php 
        if ($ext_plugins) {
            echo "{$ext_plugins}\n";
        }
        if (!$compressed) {
            ?>
	(function(){var t=tinyMCEPreInit,sl=tinymce.ScriptLoader,ln=t.mceInit.language,th=t.mceInit.theme,pl=t.mceInit.plugins;sl.markDone(t.base+'/langs/'+ln+'.js');sl.markDone(t.base+'/themes/'+th+'/langs/'+ln+'.js');sl.markDone(t.base+'/themes/'+th+'/langs/'+ln+'_dlg.js');tinymce.each(pl.split(','),function(n){if(n&&n.charAt(0)!='-'){sl.markDone(t.base+'/plugins/'+n+'/langs/'+ln+'.js');sl.markDone(t.base+'/plugins/'+n+'/langs/'+ln+'_dlg.js');}});})();
	<?php 
        }
        ?>
	tinyMCE.init(tinyMCEPreInit.mceInit);
	/* ]]> */
	</script>
    <?php 
        // Load additional inline scripts based on active plugins.
        if (in_array('wpdialogs', $plugins)) {
            wp_print_scripts(array('wpdialogs-popup'));
            wp_print_styles('wp-jquery-ui-dialog');
        }
        if (in_array('wplink', $plugins, true)) {
            require_once ABSPATH . 'wp-admin/includes/template.php';
            require_once ABSPATH . 'wp-admin/includes/internal-linking.php';
            ?>
<div style="display:none;"><?php 
            wp_link_dialog();
            ?>
</div><?php 
            wp_print_scripts('wplink');
            wp_print_styles('wplink');
        }
    }