Changeset 46739
- Timestamp:
- 11/17/2019 07:41:49 AM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/_enqueues/wp/customize/controls.js
r46623 r46739 3501 3501 {}, 3502 3502 control.defaults, 3503 control.params || {}, // In case sub -class already defines.3503 control.params || {}, // In case subclass already defines. 3504 3504 options.params || options || {} // The options.params property is deprecated, but it is checked first for back-compat. 3505 3505 ); -
trunk/src/wp-admin/includes/class-wp-list-table.php
r46662 r46739 252 252 */ 253 253 public function ajax_user_can() { 254 die( 'function WP_List_Table::ajax_user_can() must be over -ridden in a sub-class.' );254 die( 'function WP_List_Table::ajax_user_can() must be overridden in a subclass.' ); 255 255 } 256 256 … … 264 264 */ 265 265 public function prepare_items() { 266 die( 'function WP_List_Table::prepare_items() must be over -ridden in a sub-class.' );266 die( 'function WP_List_Table::prepare_items() must be overridden in a subclass.' ); 267 267 } 268 268 … … 932 932 */ 933 933 public function get_columns() { 934 die( 'function WP_List_Table::get_columns() must be over -ridden in a sub-class.' );934 die( 'function WP_List_Table::get_columns() must be overridden in a subclass.' ); 935 935 } 936 936 -
trunk/src/wp-includes/class-wp-image-editor.php
r46661 r46739 31 31 /** 32 32 * Checks to see if current environment supports the editor chosen. 33 * Must be overridden in a sub -class.33 * Must be overridden in a subclass. 34 34 * 35 35 * @since 3.5.0 … … 46 46 /** 47 47 * Checks to see if editor supports the mime-type specified. 48 * Must be overridden in a sub -class.48 * Must be overridden in a subclass. 49 49 * 50 50 * @since 3.5.0 -
trunk/src/wp-includes/class-wp-widget.php
r46627 r46739 102 102 * Echoes the widget content. 103 103 * 104 * Sub -classes should over-ride this function to generate their widget code.104 * Subclasses should override this function to generate their widget code. 105 105 * 106 106 * @since 2.8.0 … … 111 111 */ 112 112 public function widget( $args, $instance ) { 113 die( 'function WP_Widget::widget() must be over -ridden in a sub-class.' );113 die( 'function WP_Widget::widget() must be overridden in a subclass.' ); 114 114 } 115 115 -
trunk/src/wp-includes/pomo/translations.php
r42343 r46739 114 114 * 0 if there is one element, 1 otherwise 115 115 * 116 * This function should be overridden by the sub -classes. For example MO/PO can derive the logic116 * This function should be overridden by the subclasses. For example MO/PO can derive the logic 117 117 * from their headers. 118 118 *
Note: See TracChangeset
for help on using the changeset viewer.