Changeset 30537
- Timestamp:
- 11/24/2014 04:57:17 AM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r30227 r30537 914 914 915 915 /** 916 * Get a list of CSS classes for the <table> tag917 * 918 * @since 3.1.0 919 * @access protected 920 * 921 * @return array 916 * Get a list of CSS classes for the list table table tag. 917 * 918 * @since 3.1.0 919 * @access protected 920 * 921 * @return array List of CSS classes for the table tag. 922 922 */ 923 923 protected function get_table_classes() { … … 959 959 960 960 /** 961 * Generate the <tbody> part of the table961 * Generate the tbody element for the list table. 962 962 * 963 963 * @since 3.1.0 -
trunk/src/wp-admin/includes/class-wp-users-list-table.php
r29707 r30537 332 332 * 333 333 * @param object $user_object The current user object. 334 * @param string $style Optional. Style attributes added to the <tr>element.334 * @param string $style Optional. Style attributes added to the `<tr>` element. 335 335 * Must be sanitized. Default empty. 336 336 * @param string $role Optional. Key for the $wp_roles array. Default empty. -
trunk/src/wp-includes/class-wp-embed.php
r30536 r30537 230 230 * @see WP_oEmbed::discover() 231 231 * 232 * @param bool $enable Whether to enable linktag discovery. Default false.232 * @param bool $enable Whether to enable `<link>` tag discovery. Default false. 233 233 */ 234 234 $attr['discover'] = ( apply_filters( 'embed_oembed_discover', false ) && author_can( $post_ID, 'unfiltered_html' ) ); -
trunk/src/wp-includes/class.wp-dependencies.php
r29253 r30537 90 90 */ 91 91 public function do_items( $handles = false, $group = false ) { 92 /* *92 /* 93 93 * If nothing is passed, print the queue. If a string is passed, 94 94 * print that item. If an array is passed, print those items. … … 100 100 if ( !in_array($handle, $this->done, true) && isset($this->registered[$handle]) ) { 101 101 102 /* *102 /* 103 103 * A single item may alias a set of items, by having dependencies, 104 104 * but no source. Queuing the item queues the dependencies. … … 108 108 * 109 109 * The src property is false. 110 **/110 */ 111 111 if ( ! $this->registered[$handle]->src ) { 112 112 $this->done[] = $handle; … … 114 114 } 115 115 116 /* *116 /* 117 117 * Attempt to process the item. If successful, 118 118 * add the handle to the done array. -
trunk/src/wp-includes/cron.php
r29939 r30537 350 350 * 351 351 * The 'display' is the description. For the 'weekly' key, the 'display' would 352 * be <code>__('Once Weekly')</code>.352 * be `__( 'Once Weekly' )`. 353 353 * 354 354 * For your plugin, you will be passed an array. you can easily add your 355 355 * schedule by doing the following. 356 * <code>357 * // filter parameter variable name is 'array'358 * 359 * 360 * 'display' => __('Once Weekly')361 * 362 * </code>356 * 357 * // Filter parameter variable name is 'array'. 358 * $array['weekly'] = array( 359 * 'interval' => 604800, 360 * 'display' => __( 'Once Weekly' ) 361 * ); 362 * 363 363 * 364 364 * @since 2.1.0
Note: See TracChangeset
for help on using the changeset viewer.