Changeset 28026
- Timestamp:
- 04/07/2014 11:08:46 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r28024 r28026 736 736 737 737 /** 738 * Fires when scripts and styles are enqueued for the editor 738 * Fires when scripts and styles are enqueued for the editor. 739 739 * 740 740 * @since 3.9.0 741 741 * 742 * @param array An array containing boolean values whether TinyMCE and Quicktags are being loaded. 742 * @param array $to_load An array containing boolean values whether TinyMCE 743 * and Quicktags are being loaded. 743 744 */ 744 do_action( 'wp_enqueue_editor', array( 'tinymce' => self::$has_tinymce, 'quicktags' => self::$has_quicktags ) ); 745 do_action( 'wp_enqueue_editor', array( 746 'tinymce' => self::$has_tinymce, 747 'quicktags' => self::$has_quicktags, 748 ) ); 745 749 } 746 750
Note: See TracChangeset
for help on using the changeset viewer.