PageRenderTime 62ms CodeModel.GetById 27ms RepoModel.GetById 1ms app.codeStats 0ms

/wp-includes/class-wp-editor.php

https://bitbucket.org/broderboy/nycendurance-wordpress
PHP | 798 lines | 598 code | 132 blank | 68 comment | 130 complexity | 344076ae1d5cfc1a2aaf0e49af5a223b MD5 | raw file
Possible License(s): AGPL-1.0, GPL-3.0, Apache-2.0, GPL-2.0, LGPL-2.1
  1. <?php
  2. /**
  3. * Facilitates adding of the WordPress editor as used on the Write and Edit screens.
  4. *
  5. * @package WordPress
  6. * @since 3.3
  7. *
  8. * Private, not included by default. See wp_editor() in wp-includes/general-template.php.
  9. */
  10. final class _WP_Editors {
  11. public static $mce_locale;
  12. private static $mce_settings = array();
  13. private static $qt_settings = array();
  14. private static $plugins = array();
  15. private static $qt_buttons = array();
  16. private static $ext_plugins;
  17. private static $baseurl;
  18. private static $first_init;
  19. private static $this_tinymce = false;
  20. private static $this_quicktags = false;
  21. private static $has_tinymce = false;
  22. private static $has_quicktags = false;
  23. private static $has_medialib = false;
  24. private static $editor_buttons_css = true;
  25. private function __construct() {}
  26. public static function parse_settings($editor_id, $settings) {
  27. $set = wp_parse_args( $settings, array(
  28. 'wpautop' => true, // use wpautop?
  29. 'media_buttons' => true, // show insert/upload button(s)
  30. 'textarea_name' => $editor_id, // set the textarea name to something different, square brackets [] can be used here
  31. 'textarea_rows' => get_option('default_post_edit_rows', 10), // rows="..."
  32. 'tabindex' => '',
  33. 'editor_css' => '', // intended for extra styles for both visual and HTML editors buttons, needs to include the <style> tags, can use "scoped".
  34. 'editor_class' => '', // add extra class(es) to the editor textarea
  35. 'teeny' => false, // output the minimal editor config used in Press This
  36. 'dfw' => false, // replace the default fullscreen with DFW (needs specific DOM elements and css)
  37. 'tinymce' => true, // load TinyMCE, can be used to pass settings directly to TinyMCE using an array()
  38. 'quicktags' => true // load Quicktags, can be used to pass settings directly to Quicktags using an array()
  39. ) );
  40. self::$this_tinymce = ( $set['tinymce'] && user_can_richedit() );
  41. self::$this_quicktags = (bool) $set['quicktags'];
  42. if ( self::$this_tinymce )
  43. self::$has_tinymce = true;
  44. if ( self::$this_quicktags )
  45. self::$has_quicktags = true;
  46. return $set;
  47. }
  48. /**
  49. * Outputs the HTML for a single instance of the editor.
  50. *
  51. * @param string $content The initial content of the editor.
  52. * @param string $editor_id ID for the textarea and TinyMCE and Quicktags instances (can contain only ASCII letters and numbers).
  53. * @param array $settings See the _parse_settings() method for description.
  54. */
  55. public static function editor( $content, $editor_id, $settings = array() ) {
  56. $set = self::parse_settings($editor_id, $settings);
  57. $editor_class = ' class="' . trim( $set['editor_class'] . ' wp-editor-area' ) . '"';
  58. $tabindex = $set['tabindex'] ? ' tabindex="' . (int) $set['tabindex'] . '"' : '';
  59. $rows = ' rows="' . (int) $set['textarea_rows'] . '"';
  60. $switch_class = 'html-active';
  61. $toolbar = $buttons = '';
  62. if ( !current_user_can( 'upload_files' ) )
  63. $set['media_buttons'] = false;
  64. if ( self::$this_quicktags && self::$this_tinymce ) {
  65. $switch_class = 'html-active';
  66. if ( 'html' == wp_default_editor() ) {
  67. add_filter('the_editor_content', 'wp_htmledit_pre');
  68. } else {
  69. add_filter('the_editor_content', 'wp_richedit_pre');
  70. $switch_class = 'tmce-active';
  71. }
  72. $buttons .= '<a id="' . $editor_id . '-html" class="hide-if-no-js wp-switch-editor switch-html" onclick="switchEditors.switchto(this);">' . __('HTML') . "</a>\n";
  73. $buttons .= '<a id="' . $editor_id . '-tmce" class="hide-if-no-js wp-switch-editor switch-tmce" onclick="switchEditors.switchto(this);">' . __('Visual') . "</a>\n";
  74. }
  75. echo '<div id="wp-' . $editor_id . '-wrap" class="wp-editor-wrap ' . $switch_class . '">';
  76. if ( self::$editor_buttons_css ) {
  77. wp_print_styles('editor-buttons');
  78. self::$editor_buttons_css = false;
  79. }
  80. if ( !empty($set['editor_css']) )
  81. echo $set['editor_css'] . "\n";
  82. if ( !empty($buttons) || $set['media_buttons'] ) {
  83. echo '<div id="wp-' . $editor_id . '-editor-tools" class="wp-editor-tools">';
  84. echo $buttons;
  85. if ( $set['media_buttons'] ) {
  86. self::$has_medialib = true;
  87. if ( !function_exists('media_buttons') )
  88. include(ABSPATH . 'wp-admin/includes/media.php');
  89. echo '<div id="wp-' . $editor_id . '-media-buttons" class="hide-if-no-js wp-media-buttons">';
  90. do_action('media_buttons', $editor_id);
  91. echo "</div>\n";
  92. }
  93. echo "</div>\n";
  94. }
  95. $the_editor = apply_filters('the_editor', '<div id="wp-' . $editor_id . '-editor-container" class="wp-editor-container"><textarea' . $editor_class . $rows . $tabindex . ' cols="40" name="' . $set['textarea_name'] . '" id="' . $editor_id . '">%s</textarea></div>');
  96. $content = apply_filters('the_editor_content', $content);
  97. printf($the_editor, $content);
  98. echo "\n</div>\n\n";
  99. self::editor_settings($editor_id, $set);
  100. }
  101. public static function editor_settings($editor_id, $set) {
  102. global $editor_styles;
  103. $first_run = false;
  104. if ( empty(self::$first_init) ) {
  105. if ( is_admin() ) {
  106. add_action( 'admin_print_footer_scripts', array( __CLASS__, 'editor_js'), 50 );
  107. add_action( 'admin_footer', array( __CLASS__, 'enqueue_scripts'), 1 );
  108. } else {
  109. add_action( 'wp_print_footer_scripts', array( __CLASS__, 'editor_js'), 50 );
  110. add_action( 'wp_footer', array( __CLASS__, 'enqueue_scripts'), 1 );
  111. }
  112. }
  113. if ( self::$this_quicktags ) {
  114. $qtInit = array(
  115. 'id' => $editor_id,
  116. 'buttons' => ''
  117. );
  118. if ( is_array($set['quicktags']) )
  119. $qtInit = array_merge($qtInit, $set['quicktags']);
  120. if ( empty($qtInit['buttons']) )
  121. $qtInit['buttons'] = 'strong,em,link,block,del,ins,img,ul,ol,li,code,more,spell,close';
  122. if ( $set['dfw'] )
  123. $qtInit['buttons'] .= ',fullscreen';
  124. $qtInit = apply_filters('quicktags_settings', $qtInit, $editor_id);
  125. self::$qt_settings[$editor_id] = $qtInit;
  126. self::$qt_buttons = array_merge( self::$qt_buttons, explode(',', $qtInit['buttons']) );
  127. }
  128. if ( self::$this_tinymce ) {
  129. if ( empty(self::$first_init) ) {
  130. self::$baseurl = includes_url('js/tinymce');
  131. self::$mce_locale = $mce_locale = ( '' == get_locale() ) ? 'en' : strtolower( substr(get_locale(), 0, 2) ); // only ISO 639-1
  132. $no_captions = (bool) apply_filters( 'disable_captions', '' );
  133. $plugins = array( 'inlinepopups', 'spellchecker', 'tabfocus', 'paste', 'media', 'fullscreen', 'wordpress', 'wpeditimage', 'wpgallery', 'wplink', 'wpdialogs' );
  134. $first_run = true;
  135. if ( $set['teeny'] ) {
  136. self::$plugins = $plugins = apply_filters( 'teeny_mce_plugins', array('inlinepopups', 'fullscreen', 'wordpress', 'wplink', 'wpdialogs'), $editor_id );
  137. $ext_plugins = '';
  138. } else {
  139. /*
  140. The following filter takes an associative array of external plugins for TinyMCE in the form 'plugin_name' => 'url'.
  141. It adds the plugin's name to TinyMCE's plugins init and the call to PluginManager to load the plugin.
  142. The url should be absolute and should include the js file name to be loaded. Example:
  143. array( 'myplugin' => 'http://my-site.com/wp-content/plugins/myfolder/mce_plugin.js' )
  144. If the plugin uses a button, it should be added with one of the "$mce_buttons" filters.
  145. */
  146. $mce_external_plugins = apply_filters('mce_external_plugins', array());
  147. $ext_plugins = '';
  148. if ( ! empty($mce_external_plugins) ) {
  149. /*
  150. The following filter loads external language files for TinyMCE plugins.
  151. It takes an associative array 'plugin_name' => 'path', where path is the
  152. include path to the file. The language file should follow the same format as
  153. /tinymce/langs/wp-langs.php and should define a variable $strings that
  154. holds all translated strings.
  155. When this filter is not used, the function will try to load {mce_locale}.js.
  156. If that is not found, en.js will be tried next.
  157. */
  158. $mce_external_languages = apply_filters('mce_external_languages', array());
  159. $loaded_langs = array();
  160. $strings = '';
  161. if ( ! empty($mce_external_languages) ) {
  162. foreach ( $mce_external_languages as $name => $path ) {
  163. if ( @is_file($path) && @is_readable($path) ) {
  164. include_once($path);
  165. $ext_plugins .= $strings . "\n";
  166. $loaded_langs[] = $name;
  167. }
  168. }
  169. }
  170. foreach ( $mce_external_plugins as $name => $url ) {
  171. if ( is_ssl() ) $url = str_replace('http://', 'https://', $url);
  172. $plugins[] = '-' . $name;
  173. $plugurl = dirname($url);
  174. $strings = $str1 = $str2 = '';
  175. if ( ! in_array($name, $loaded_langs) ) {
  176. $path = str_replace( content_url(), '', $plugurl );
  177. $path = WP_CONTENT_DIR . $path . '/langs/';
  178. if ( function_exists('realpath') )
  179. $path = trailingslashit( realpath($path) );
  180. if ( @is_file($path . $mce_locale . '.js') )
  181. $strings .= @file_get_contents($path . $mce_locale . '.js') . "\n";
  182. if ( @is_file($path . $mce_locale . '_dlg.js') )
  183. $strings .= @file_get_contents($path . $mce_locale . '_dlg.js') . "\n";
  184. if ( 'en' != $mce_locale && empty($strings) ) {
  185. if ( @is_file($path . 'en.js') ) {
  186. $str1 = @file_get_contents($path . 'en.js');
  187. $strings .= preg_replace( '/([\'"])en\./', '$1' . $mce_locale . '.', $str1, 1 ) . "\n";
  188. }
  189. if ( @is_file($path . 'en_dlg.js') ) {
  190. $str2 = @file_get_contents($path . 'en_dlg.js');
  191. $strings .= preg_replace( '/([\'"])en\./', '$1' . $mce_locale . '.', $str2, 1 ) . "\n";
  192. }
  193. }
  194. if ( ! empty($strings) )
  195. $ext_plugins .= "\n" . $strings . "\n";
  196. }
  197. $ext_plugins .= 'tinyMCEPreInit.load_ext("' . $plugurl . '", "' . $mce_locale . '");' . "\n";
  198. $ext_plugins .= 'tinymce.PluginManager.load("' . $name . '", "' . $url . '");' . "\n";
  199. self::$ext_plugins .= $ext_plugins;
  200. }
  201. }
  202. $plugins = array_unique( apply_filters('tiny_mce_plugins', $plugins) );
  203. }
  204. if ( $set['dfw'] )
  205. $plugins[] = 'wpfullscreen';
  206. self::$plugins = $plugins;
  207. /*
  208. The following filter allows localization scripts to change the languages displayed in the spellchecker's drop-down menu.
  209. By default it uses Google's spellchecker API, but can be configured to use PSpell/ASpell if installed on the server.
  210. The + sign marks the default language. More information:
  211. http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/spellchecker
  212. */
  213. $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');
  214. self::$first_init = array(
  215. 'mode' => 'exact',
  216. 'width' => '100%',
  217. 'theme' => 'advanced',
  218. 'skin' => 'wp_theme',
  219. 'language' => self::$mce_locale,
  220. 'spellchecker_languages' => $mce_spellchecker_languages,
  221. 'theme_advanced_toolbar_location' => 'top',
  222. 'theme_advanced_toolbar_align' => 'left',
  223. 'theme_advanced_statusbar_location' => 'bottom',
  224. 'theme_advanced_resizing' => true,
  225. 'theme_advanced_resize_horizontal' => false,
  226. 'dialog_type' => 'modal',
  227. 'formats' => "{
  228. alignleft : [
  229. {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li', styles : {textAlign : 'left'}},
  230. {selector : 'img,table', classes : 'alignleft'}
  231. ],
  232. aligncenter : [
  233. {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li', styles : {textAlign : 'center'}},
  234. {selector : 'img,table', classes : 'aligncenter'}
  235. ],
  236. alignright : [
  237. {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li', styles : {textAlign : 'right'}},
  238. {selector : 'img,table', classes : 'alignright'}
  239. ],
  240. strikethrough : {inline : 'del'}
  241. }",
  242. 'relative_urls' => false,
  243. 'remove_script_host' => false,
  244. 'convert_urls' => false,
  245. 'remove_linebreaks' => true,
  246. 'gecko_spellcheck' => true,
  247. 'keep_styles' => false,
  248. 'entities' => '38,amp,60,lt,62,gt',
  249. 'accessibility_focus' => true,
  250. 'tabfocus_elements' => 'major-publishing-actions',
  251. 'media_strict' => false,
  252. 'paste_remove_styles' => true,
  253. 'paste_remove_spans' => true,
  254. 'paste_strip_class_attributes' => 'all',
  255. 'paste_text_use_dialog' => true,
  256. 'extended_valid_elements' => 'article[*],aside[*],audio[*],canvas[*],command[*],datalist[*],details[*],embed[*],figcaption[*],figure[*],footer[*],header[*],hgroup[*],keygen[*],mark[*],meter[*],nav[*],output[*],progress[*],section[*],source[*],summary,time[*],video[*],wbr',
  257. 'wpeditimage_disable_captions' => $no_captions,
  258. 'wp_fullscreen_content_css' => self::$baseurl . '/plugins/wpfullscreen/css/wp-fullscreen.css',
  259. 'plugins' => implode( ',', $plugins )
  260. );
  261. // load editor_style.css if the current theme supports it
  262. if ( ! empty( $editor_styles ) && is_array( $editor_styles ) ) {
  263. $mce_css = array();
  264. $editor_styles = array_unique($editor_styles);
  265. $style_uri = get_stylesheet_directory_uri();
  266. if ( ! is_child_theme() ) {
  267. foreach ( $editor_styles as $file )
  268. $mce_css[] = "$style_uri/$file";
  269. } else {
  270. $style_dir = get_stylesheet_directory();
  271. $template_uri = get_template_directory_uri();
  272. $template_dir = get_template_directory();
  273. foreach ( $editor_styles as $file ) {
  274. if ( file_exists( "$template_dir/$file" ) )
  275. $mce_css[] = "$template_uri/$file";
  276. }
  277. foreach ( $editor_styles as $file ) {
  278. if ( file_exists( "$style_dir/$file" ) )
  279. $mce_css[] = "$style_uri/$file";
  280. }
  281. }
  282. $mce_css = implode( ',', $mce_css );
  283. } else {
  284. $mce_css = '';
  285. }
  286. $mce_css = trim( apply_filters( 'mce_css', $mce_css ), ' ,' );
  287. if ( ! empty($mce_css) )
  288. self::$first_init['content_css'] = $mce_css;
  289. }
  290. if ( $set['teeny'] ) {
  291. $mce_buttons = apply_filters( 'teeny_mce_buttons', array('bold', 'italic', 'underline', 'blockquote', 'separator', 'strikethrough', 'bullist', 'numlist', 'justifyleft', 'justifycenter', 'justifyright', 'undo', 'redo', 'link', 'unlink', 'fullscreen'), $editor_id );
  292. $mce_buttons_2 = $mce_buttons_3 = $mce_buttons_4 = array();
  293. } else {
  294. $mce_buttons = apply_filters('mce_buttons', array('bold', 'italic', 'strikethrough', '|', 'bullist', 'numlist', 'blockquote', '|', 'justifyleft', 'justifycenter', 'justifyright', '|', 'link', 'unlink', 'wp_more', '|', 'spellchecker', 'fullscreen', 'wp_adv' ), $editor_id);
  295. $mce_buttons_2 = apply_filters('mce_buttons_2', array( 'formatselect', 'underline', 'justifyfull', 'forecolor', '|', 'pastetext', 'pasteword', 'removeformat', '|', 'charmap', '|', 'outdent', 'indent', '|', 'undo', 'redo', 'wp_help' ), $editor_id);
  296. $mce_buttons_3 = apply_filters('mce_buttons_3', array(), $editor_id);
  297. $mce_buttons_4 = apply_filters('mce_buttons_4', array(), $editor_id);
  298. }
  299. if ( $set['dfw'] ) {
  300. // replace the first 'fullscreen' with 'wp_fullscreen'
  301. if ( ($key = array_search('fullscreen', $mce_buttons)) !== false )
  302. $mce_buttons[$key] = 'wp_fullscreen';
  303. elseif ( ($key = array_search('fullscreen', $mce_buttons_2)) !== false )
  304. $mce_buttons_2[$key] = 'wp_fullscreen';
  305. elseif ( ($key = array_search('fullscreen', $mce_buttons_3)) !== false )
  306. $mce_buttons_3[$key] = 'wp_fullscreen';
  307. elseif ( ($key = array_search('fullscreen', $mce_buttons_4)) !== false )
  308. $mce_buttons_4[$key] = 'wp_fullscreen';
  309. }
  310. $mceInit = array (
  311. 'elements' => $editor_id,
  312. 'wpautop' => (bool) $set['wpautop'],
  313. 'remove_linebreaks' => (bool) $set['wpautop'],
  314. 'apply_source_formatting' => (bool) !$set['wpautop'],
  315. 'theme_advanced_buttons1' => implode($mce_buttons, ','),
  316. 'theme_advanced_buttons2' => implode($mce_buttons_2, ','),
  317. 'theme_advanced_buttons3' => implode($mce_buttons_3, ','),
  318. 'theme_advanced_buttons4' => implode($mce_buttons_4, ',')
  319. );
  320. if ( $first_run )
  321. $mceInit = array_merge(self::$first_init, $mceInit);
  322. if ( is_array($set['tinymce']) )
  323. $mceInit = array_merge($mceInit, $set['tinymce']);
  324. // For people who really REALLY know what they're doing with TinyMCE
  325. // You can modify initArray to add, remove, change elements of the config before tinyMCE.init
  326. // Setting "valid_elements", "invalid_elements" and "extended_valid_elements" can be done through this filter.
  327. // Best is to use the default cleanup by not specifying valid_elements, as TinyMCE contains full set of XHTML 1.0.
  328. if ( $set['teeny'] ) {
  329. $mceInit = apply_filters('teeny_mce_before_init', $mceInit, $editor_id);
  330. } else {
  331. $mceInit = apply_filters('tiny_mce_before_init', $mceInit, $editor_id);
  332. }
  333. if ( empty($mceInit['theme_advanced_buttons3']) && !empty($mceInit['theme_advanced_buttons4']) ) {
  334. $mceInit['theme_advanced_buttons3'] = $mceInit['theme_advanced_buttons4'];
  335. $mceInit['theme_advanced_buttons4'] = '';
  336. }
  337. self::$mce_settings[$editor_id] = $mceInit;
  338. } // end if self::$this_tinymce
  339. }
  340. private static function _parse_init($init) {
  341. $options = '';
  342. foreach ( $init as $k => $v ) {
  343. if ( is_bool($v) ) {
  344. $val = $v ? 'true' : 'false';
  345. $options .= $k . ':' . $val . ',';
  346. continue;
  347. } elseif ( !empty($v) && is_string($v) && ( ('{' == $v{0} && '}' == $v{strlen($v) - 1}) || ('[' == $v{0} && ']' == $v{strlen($v) - 1}) || preg_match('/^\(?function ?\(/', $v) ) ) {
  348. $options .= $k . ':' . $v . ',';
  349. continue;
  350. }
  351. $options .= $k . ':"' . $v . '",';
  352. }
  353. return '{' . trim( $options, ' ,' ) . '}';
  354. }
  355. public static function enqueue_scripts() {
  356. wp_enqueue_script('word-count');
  357. if ( self::$has_tinymce )
  358. wp_enqueue_script('editor');
  359. if ( self::$has_quicktags )
  360. wp_enqueue_script('quicktags');
  361. if ( in_array('wplink', self::$plugins, true) || in_array('link', self::$qt_buttons, true) ) {
  362. wp_enqueue_script('wplink');
  363. wp_enqueue_script('wpdialogs-popup');
  364. wp_enqueue_style('wp-jquery-ui-dialog');
  365. }
  366. if ( in_array('wpfullscreen', self::$plugins, true) || in_array('fullscreen', self::$qt_buttons, true) )
  367. wp_enqueue_script('wp-fullscreen');
  368. if ( self::$has_medialib ) {
  369. add_thickbox();
  370. wp_enqueue_script('media-upload');
  371. }
  372. }
  373. public static function editor_js() {
  374. global $tinymce_version, $concatenate_scripts, $compress_scripts;
  375. /**
  376. * Filter "tiny_mce_version" is deprecated
  377. *
  378. * The tiny_mce_version filter is not needed since external plugins are loaded directly by TinyMCE.
  379. * These plugins can be refreshed by appending query string to the URL passed to "mce_external_plugins" filter.
  380. * 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).
  381. */
  382. $version = 'ver=' . $tinymce_version;
  383. $tmce_on = !empty(self::$mce_settings);
  384. if ( ! isset($concatenate_scripts) )
  385. script_concat_settings();
  386. $compressed = $compress_scripts && $concatenate_scripts && isset($_SERVER['HTTP_ACCEPT_ENCODING'])
  387. && false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip');
  388. if ( $tmce_on && 'en' != self::$mce_locale )
  389. include_once(ABSPATH . WPINC . '/js/tinymce/langs/wp-langs.php');
  390. $mceInit = $qtInit = '';
  391. if ( $tmce_on ) {
  392. foreach ( self::$mce_settings as $editor_id => $init ) {
  393. $options = self::_parse_init( $init );
  394. $mceInit .= "'$editor_id':{$options},";
  395. }
  396. $mceInit = '{' . trim($mceInit, ',') . '}';
  397. } else {
  398. $mceInit = '{}';
  399. }
  400. if ( !empty(self::$qt_settings) ) {
  401. foreach ( self::$qt_settings as $editor_id => $init ) {
  402. $options = self::_parse_init( $init );
  403. $qtInit .= "'$editor_id':{$options},";
  404. }
  405. $qtInit = '{' . trim($qtInit, ',') . '}';
  406. } else {
  407. $qtInit = '{}';
  408. }
  409. $ref = array(
  410. 'plugins' => implode( ',', self::$plugins ),
  411. 'theme' => 'advanced',
  412. 'language' => self::$mce_locale
  413. );
  414. do_action('before_wp_tiny_mce', self::$mce_settings);
  415. ?>
  416. <script type="text/javascript">
  417. tinyMCEPreInit = {
  418. base : "<?php echo self::$baseurl; ?>",
  419. suffix : "",
  420. query : "<?php echo $version; ?>",
  421. mceInit : <?php echo $mceInit; ?>,
  422. qtInit : <?php echo $qtInit; ?>,
  423. ref : <?php echo self::_parse_init( $ref ); ?>,
  424. load_ext : function(url,lang){var sl=tinymce.ScriptLoader;sl.markDone(url+'/langs/'+lang+'.js');sl.markDone(url+'/langs/'+lang+'_dlg.js');}
  425. };
  426. </script>
  427. <?php
  428. $baseurl = self::$baseurl;
  429. if ( $tmce_on ) {
  430. if ( $compressed )
  431. echo "<script type='text/javascript' src='{$baseurl}/wp-tinymce.php?c=1&amp;$version'></script>\n";
  432. else
  433. echo "<script type='text/javascript' src='{$baseurl}/tiny_mce.js?$version'></script>\n";
  434. if ( 'en' != self::$mce_locale && isset($lang) )
  435. echo "<script type='text/javascript'>\n$lang\n</script>\n";
  436. else
  437. echo "<script type='text/javascript' src='{$baseurl}/langs/wp-langs-en.js?$version'></script>\n";
  438. }
  439. ?>
  440. <script type="text/javascript">
  441. (function(){
  442. var init, ed, qt, first_init, mce = <?php echo wp_default_editor() == 'tinymce' ? 'true' : 'false'; ?>;
  443. if ( typeof(tinymce) == 'object' ) {
  444. // mark wp_theme/ui.css as loaded
  445. tinymce.DOM.files[tinymce.baseURI.getURI() + '/themes/advanced/skins/wp_theme/ui.css'] = true;
  446. for ( ed in tinyMCEPreInit.mceInit ) {
  447. if ( first_init ) {
  448. init = tinyMCEPreInit.mceInit[ed] = tinymce.extend( {}, first_init, tinyMCEPreInit.mceInit[ed] );
  449. } else {
  450. init = first_init = tinyMCEPreInit.mceInit[ed];
  451. }
  452. if ( mce )
  453. try { tinymce.init(init); } catch(e){}
  454. }
  455. }
  456. if ( typeof(QTags) == 'function' ) {
  457. for ( qt in tinyMCEPreInit.qtInit ) {
  458. try { quicktags( tinyMCEPreInit.qtInit[qt] ); } catch(e){}
  459. }
  460. }
  461. })();
  462. var wpActiveEditor;
  463. jQuery('.wp-editor-wrap').mousedown(function(e){
  464. wpActiveEditor = this.id.slice(3, -5);
  465. });
  466. <?php
  467. if ( self::$ext_plugins )
  468. echo self::$ext_plugins . "\n";
  469. if ( ! $compressed && $tmce_on ) {
  470. ?>
  471. (function(){var t=tinyMCEPreInit,sl=tinymce.ScriptLoader,ln=t.ref.language,th=t.ref.theme,pl=t.ref.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');sl.markDone(t.base+'/themes/advanced/skins/wp_theme/ui.css');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');}});})();
  472. <?php
  473. }
  474. if ( !is_admin() )
  475. echo 'var ajaxurl = "' . admin_url('admin-ajax.php') . '";';
  476. ?>
  477. </script>
  478. <?php
  479. if ( in_array('wplink', self::$plugins, true) || in_array('link', self::$qt_buttons, true) )
  480. self::wp_link_dialog();
  481. if ( in_array('wpfullscreen', self::$plugins, true) || in_array('fullscreen', self::$qt_buttons, true) )
  482. self::wp_fullscreen_html();
  483. do_action('after_wp_tiny_mce', self::$mce_settings);
  484. }
  485. public static function wp_fullscreen_html() {
  486. global $content_width, $post;
  487. $width = isset($content_width) && 800 > $content_width ? $content_width : 800;
  488. $width = $width + 22; // compensate for the padding and border
  489. $dfw_width = get_user_setting( 'dfw_width', $width );
  490. $save = isset($post->post_status) && $post->post_status == 'publish' ? __('Update') : __('Save');
  491. ?>
  492. <div id="wp-fullscreen-body">
  493. <div id="fullscreen-topbar">
  494. <div id="wp-fullscreen-toolbar">
  495. <div id="wp-fullscreen-close"><a href="#" onclick="fullscreen.off();return false;"><?php _e('Exit fullscreen'); ?></a></div>
  496. <div id="wp-fullscreen-central-toolbar" style="width:<?php echo $width; ?>px;">
  497. <div id="wp-fullscreen-mode-bar"><div id="wp-fullscreen-modes">
  498. <a href="#" onclick="fullscreen.switchmode('tinymce');return false;"><?php _e('Visual'); ?></a>
  499. <a href="#" onclick="fullscreen.switchmode('html');return false;"><?php _e('HTML'); ?></a>
  500. </div></div>
  501. <div id="wp-fullscreen-button-bar"><div id="wp-fullscreen-buttons" class="wp_themeSkin">
  502. <?php
  503. $buttons = array(
  504. // format: title, onclick, show in both editors
  505. 'bold' => array( 'title' => __('Bold (Ctrl + B)'), 'onclick' => 'fullscreen.b();', 'both' => false ),
  506. 'italic' => array( 'title' => __('Italic (Ctrl + I)'), 'onclick' => 'fullscreen.i();', 'both' => false ),
  507. '0' => 'separator',
  508. 'bullist' => array( 'title' => __('Unordered list (Alt + Shift + U)'), 'onclick' => 'fullscreen.ul();', 'both' => false ),
  509. 'numlist' => array( 'title' => __('Ordered list (Alt + Shift + O)'), 'onclick' => 'fullscreen.ol();', 'both' => false ),
  510. '1' => 'separator',
  511. 'blockquote' => array( 'title' => __('Blockquote (Alt + Shift + Q)'), 'onclick' => 'fullscreen.blockquote();', 'both' => false ),
  512. 'image' => array( 'title' => __('Insert/edit image (Alt + Shift + M)'), 'onclick' => "fullscreen.medialib();", 'both' => true ),
  513. '2' => 'separator',
  514. 'link' => array( 'title' => __('Insert/edit link (Alt + Shift + A)'), 'onclick' => 'fullscreen.link();', 'both' => true ),
  515. 'unlink' => array( 'title' => __('Unlink (Alt + Shift + S)'), 'onclick' => 'fullscreen.unlink();', 'both' => false ),
  516. '3' => 'separator',
  517. 'help' => array( 'title' => __('Help (Alt + Shift + H)'), 'onclick' => 'fullscreen.help();', 'both' => false )
  518. );
  519. $buttons = apply_filters( 'wp_fullscreen_buttons', $buttons );
  520. foreach ( $buttons as $button => $args ) {
  521. if ( 'separator' == $args ) { ?>
  522. <div><span aria-orientation="vertical" role="separator" class="mceSeparator"></span></div>
  523. <?php continue;
  524. } ?>
  525. <div<?php if ( $args['both'] ) { ?> class="wp-fullscreen-both"<?php } ?>>
  526. <a title="<?php echo $args['title']; ?>" onclick="<?php echo $args['onclick']; ?>return false;" class="mceButton mceButtonEnabled mce_<?php echo $button; ?>" href="#" id="wp_fs_<?php echo $button; ?>" role="button" aria-pressed="false">
  527. <span class="mceIcon mce_<?php echo $button; ?>"></span>
  528. </a>
  529. </div>
  530. <?php
  531. } ?>
  532. </div></div>
  533. <div id="wp-fullscreen-save">
  534. <span><?php if ( $post->post_status == 'publish' ) _e('Updated.'); else _e('Saved.'); ?></span>
  535. <img src="images/wpspin_light.gif" alt="" />
  536. <input type="button" class="button-primary" value="<?php echo $save; ?>" onclick="fullscreen.save();" />
  537. </div>
  538. </div>
  539. </div>
  540. </div>
  541. <div id="wp-fullscreen-wrap" style="width:<?php echo $dfw_width; ?>px;">
  542. <?php if ( post_type_supports($post->post_type, 'title') ) { ?>
  543. <label id="wp-fullscreen-title-prompt-text" for="wp-fullscreen-title"><?php echo apply_filters( 'enter_title_here', __( 'Enter title here' ), $post ); ?></label>
  544. <input type="text" id="wp-fullscreen-title" value="" autocomplete="off" />
  545. <?php } ?>
  546. <div id="wp-fullscreen-container">
  547. <textarea id="wp_mce_fullscreen"></textarea>
  548. </div>
  549. <div id="wp-fullscreen-status">
  550. <div id="wp-fullscreen-count"><?php printf( __( 'Word count: %s' ), '<span class="word-count">0</span>' ); ?></div>
  551. <div id="wp-fullscreen-tagline"><?php _e('Just write.'); ?></div>
  552. </div>
  553. </div>
  554. </div>
  555. <div class="fullscreen-overlay" id="fullscreen-overlay"></div>
  556. <div class="fullscreen-overlay fullscreen-fader fade-600" id="fullscreen-fader"></div>
  557. <?php
  558. }
  559. /**
  560. * Performs post queries for internal linking.
  561. *
  562. * @since 3.1.0
  563. *
  564. * @param array $args Optional. Accepts 'pagenum' and 's' (search) arguments.
  565. * @return array Results.
  566. */
  567. public static function wp_link_query( $args = array() ) {
  568. $pts = get_post_types( array( 'public' => true ), 'objects' );
  569. $pt_names = array_keys( $pts );
  570. $query = array(
  571. 'post_type' => $pt_names,
  572. 'suppress_filters' => true,
  573. 'update_post_term_cache' => false,
  574. 'update_post_meta_cache' => false,
  575. 'post_status' => 'publish',
  576. 'order' => 'DESC',
  577. 'orderby' => 'post_date',
  578. 'posts_per_page' => 20,
  579. );
  580. $args['pagenum'] = isset( $args['pagenum'] ) ? absint( $args['pagenum'] ) : 1;
  581. if ( isset( $args['s'] ) )
  582. $query['s'] = $args['s'];
  583. $query['offset'] = $args['pagenum'] > 1 ? $query['posts_per_page'] * ( $args['pagenum'] - 1 ) : 0;
  584. // Do main query.
  585. $get_posts = new WP_Query;
  586. $posts = $get_posts->query( $query );
  587. // Check if any posts were found.
  588. if ( ! $get_posts->post_count )
  589. return false;
  590. // Build results.
  591. $results = array();
  592. foreach ( $posts as $post ) {
  593. if ( 'post' == $post->post_type )
  594. $info = mysql2date( __( 'Y/m/d' ), $post->post_date );
  595. else
  596. $info = $pts[ $post->post_type ]->labels->singular_name;
  597. $results[] = array(
  598. 'ID' => $post->ID,
  599. 'title' => trim( esc_html( strip_tags( get_the_title( $post ) ) ) ),
  600. 'permalink' => get_permalink( $post->ID ),
  601. 'info' => $info,
  602. );
  603. }
  604. return $results;
  605. }
  606. /**
  607. * Dialog for internal linking.
  608. *
  609. * @since 3.1.0
  610. */
  611. public static function wp_link_dialog() {
  612. ?>
  613. <div style="display:none;">
  614. <form id="wp-link" tabindex="-1">
  615. <?php wp_nonce_field( 'internal-linking', '_ajax_linking_nonce', false ); ?>
  616. <div id="link-selector">
  617. <div id="link-options">
  618. <p class="howto"><?php _e( 'Enter the destination URL' ); ?></p>
  619. <div>
  620. <label><span><?php _e( 'URL' ); ?></span><input id="url-field" type="text" tabindex="10" name="href" /></label>
  621. </div>
  622. <div>
  623. <label><span><?php _e( 'Title' ); ?></span><input id="link-title-field" type="text" tabindex="20" name="linktitle" /></label>
  624. </div>
  625. <div class="link-target">
  626. <label><input type="checkbox" id="link-target-checkbox" tabindex="30" /> <?php _e( 'Open link in a new window/tab' ); ?></label>
  627. </div>
  628. </div>
  629. <?php $show_internal = '1' == get_user_setting( 'wplink', '0' ); ?>
  630. <p class="howto toggle-arrow <?php if ( $show_internal ) echo 'toggle-arrow-active'; ?>" id="internal-toggle"><?php _e( 'Or link to existing content' ); ?></p>
  631. <div id="search-panel"<?php if ( ! $show_internal ) echo ' style="display:none"'; ?>>
  632. <div class="link-search-wrapper">
  633. <label>
  634. <span><?php _e( 'Search' ); ?></span>
  635. <input type="text" id="search-field" class="link-search-field" tabindex="60" autocomplete="off" />
  636. <img class="waiting" src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" />
  637. </label>
  638. </div>
  639. <div id="search-results" class="query-results">
  640. <ul></ul>
  641. <div class="river-waiting">
  642. <img class="waiting" src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" />
  643. </div>
  644. </div>
  645. <div id="most-recent-results" class="query-results">
  646. <div class="query-notice"><em><?php _e( 'No search term specified. Showing recent items.' ); ?></em></div>
  647. <ul></ul>
  648. <div class="river-waiting">
  649. <img class="waiting" src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" />
  650. </div>
  651. </div>
  652. </div>
  653. </div>
  654. <div class="submitbox">
  655. <div id="wp-link-cancel">
  656. <a class="submitdelete deletion" href="#"><?php _e( 'Cancel' ); ?></a>
  657. </div>
  658. <div id="wp-link-update">
  659. <input type="submit" tabindex="100" value="<?php esc_attr_e( 'Add Link' ); ?>" class="button-primary" id="wp-link-submit" name="wp-link-submit">
  660. </div>
  661. </div>
  662. </form>
  663. </div>
  664. <?php
  665. }
  666. }