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

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

- Page: https://pluginprobe.com/plugins/ghostkit/3.3.3/code/gutenberg/extend/position/index.php
- Raw: https://pluginprobe.com/plugins/ghostkit/3.3.3/raw/gutenberg/extend/position/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/position/index.php#L10-L20`.

```php
<?php
/**
 * Spacings Extension.
 *
 * @package ghostkit
 */

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

/**
 * Class GhostKit_Extension_Position
 */
class GhostKit_Extension_Position {
	/**
	 * GhostKit_Extension_Position constructor.
	 */
	public function __construct() {
		GhostKit_Extensions::register(
			'position',
			array(
				'default_supports' => array(
					'position' => array(
						'position'     => true,
						'distance'     => true,
						'width'        => true,
						'height'       => true,
						'minMaxWidth'  => true,
						'minMaxHeight' => true,
						'zIndex'       => true,
					),
				),
			)
		);
	}
}

new GhostKit_Extension_Position();

```
