# ghostkit/3.3.3/gutenberg/extend/display/index.php

Block Animations, Motion &amp; Scroll Effects – Ghost Kit, version 3.3.3. 34 lines.

- Page: https://pluginprobe.com/plugins/ghostkit/3.3.3/code/gutenberg/extend/display/index.php
- Raw: https://pluginprobe.com/plugins/ghostkit/3.3.3/raw/gutenberg/extend/display/index.php
- Modified: 2024-02-18T18:40:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ghostkit/3.3.3/code/gutenberg/extend/display/index.php#L10-L20`.

```php
<?php
/**
 * Display Conditions Extension.
 *
 * @package ghostkit
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Class GhostKit_Extension_Display
 */
class GhostKit_Extension_Display {
	/**
	 * GhostKit_Extension_Display constructor.
	 */
	public function __construct() {
		GhostKit_Extensions::register(
			'display',
			array(
				'default_supports' => array(
					'display' => array(
						'screenSize' => true,
					),
				),
			)
		);
	}
}

new GhostKit_Extension_Display();

```
