Changeset 51259 for trunk/src/wp-includes/class-wp-block-type.php
- Timestamp:
- 06/29/2021 03:08:16 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-block-type.php
r51244 r51259 157 157 158 158 /** 159 * Block type editor script handle.159 * Block type editor only script handle. 160 160 * 161 161 * @since 5.0.0 … … 165 165 166 166 /** 167 * Block type front end script handle.167 * Block type front end and editor script handle. 168 168 * 169 169 * @since 5.0.0 … … 173 173 174 174 /** 175 * Block type editor style handle. 175 * Block type front end only script handle. 176 * 177 * @since 5.0.0 178 * @var string|null 179 */ 180 public $view_script = null; 181 182 /** 183 * Block type editor only style handle. 176 184 * 177 185 * @since 5.0.0 … … 181 189 182 190 /** 183 * Block type front end style handle.191 * Block type front end and editor style handle. 184 192 * 185 193 * @since 5.0.0 … … 226 234 * @type array $uses_context Context values inherited by blocks of this type. 227 235 * @type array|null $provides_context Context provided by blocks of this type. 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. 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. 232 241 * } 233 242 */
Note: See TracChangeset
for help on using the changeset viewer.