Changeset 51268 for trunk/src/wp-includes/class-wp-block-type.php
- Timestamp:
- 06/30/2021 02:13:30 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-block-type.php
r51260 r51268 157 157 158 158 /** 159 * Block type editor onlyscript handle.159 * Block type editor script handle. 160 160 * 161 161 * @since 5.0.0 … … 165 165 166 166 /** 167 * Block type front end and editorscript handle.167 * Block type front end script handle. 168 168 * 169 169 * @since 5.0.0 … … 173 173 174 174 /** 175 * Block type front end only script handle. 176 * 177 * @since 5.8.0 178 * @var string|null 179 */ 180 public $view_script = null; 181 182 /** 183 * Block type editor only style handle. 175 * Block type editor style handle. 184 176 * 185 177 * @since 5.0.0 … … 189 181 190 182 /** 191 * Block type front end and editorstyle handle.183 * Block type front end style handle. 192 184 * 193 185 * @since 5.0.0 … … 234 226 * @type array $uses_context Context values inherited by blocks of this type. 235 227 * @type array|null $provides_context Context provided by blocks of this type. 236 * @type string|null $editor_script Block type editor only script handle. 237 * @type string|null $script Block type front end and editor script handle. 238 * @type string|null $view_script Block type front end only script handle. 239 * @type string|null $editor_style Block type editor only style handle. 240 * @type string|null $style Block type front end and editor style handle. 228 * @type string|null $editor_script Block type editor script handle. 229 * @type string|null $script Block type front end script handle. 230 * @type string|null $editor_style Block type editor style handle. 231 * @type string|null $style Block type front end style handle. 241 232 * } 242 233 */
Note: See TracChangeset
for help on using the changeset viewer.