Changeset 32536
- Timestamp:
- 05/22/2015 03:51:50 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r32166 r32536 32 32 * Parse default arguments for the editor instance. 33 33 * 34 * @static 34 35 * @param string $editor_id ID for the current editor instance. 35 36 * @param array $settings { … … 133 134 * Outputs the HTML for a single instance of the editor. 134 135 * 136 * @static 135 137 * @param string $content The initial content of the editor. 136 138 * @param string $editor_id ID for the textarea and TinyMCE and Quicktags instances (can contain only ASCII letters and numbers). … … 246 248 247 249 /** 250 * 251 * @static 248 252 * @param string $editor_id 249 253 * @param array $set … … 702 706 } 703 707 708 /** 709 * 710 * @static 711 * @param array $init 712 * @return string 713 */ 704 714 private static function _parse_init($init) { 705 715 $options = ''; … … 720 730 } 721 731 732 /** 733 * 734 * @static 735 */ 722 736 public static function enqueue_scripts() { 723 737 wp_enqueue_script('word-count'); … … 761 775 * Can be used directly (_WP_Editors::wp_mce_translation()) by passing the same locale as set in the TinyMCE init object. 762 776 * 777 * @static 763 778 * @param string $mce_locale The locale used for the editor. 764 779 * @param bool $json_only optional Whether to include the JavaScript calls to tinymce.addI18n() and tinymce.ScriptLoader.markDone(). … … 1047 1062 } 1048 1063 1064 /** 1065 * 1066 * @static 1067 * @global string $tinymce_version 1068 * @global bool $concatenate_scripts 1069 * @global bool $compress_scripts 1070 */ 1049 1071 public static function editor_js() { 1050 1072 global $tinymce_version, $concatenate_scripts, $compress_scripts; … … 1238 1260 } 1239 1261 1262 /** 1263 * 1264 * @static 1265 * @global int $content_width 1266 */ 1240 1267 public static function wp_fullscreen_html() { 1241 1268 global $content_width; … … 1336 1363 * @since 3.1.0 1337 1364 * 1365 * @static 1338 1366 * @param array $args Optional. Accepts 'pagenum' and 's' (search) arguments. 1339 1367 * @return false|array Results. … … 1424 1452 * 1425 1453 * @since 3.1.0 1454 * 1455 * @static 1426 1456 */ 1427 1457 public static function wp_link_dialog() {
Note: See TracChangeset
for help on using the changeset viewer.