PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.3.3
Block Animations, Motion & Scroll Effects – Ghost Kit v3.3.3
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / gutenberg / extend / transform / index.php

index.php in Block Animations, Motion & Scroll Effects – Ghost Kit 3.3.3, at gutenberg/extend/transform/index.php

39 lines 637 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Transform Extension.
4 *
5 * @package ghostkit
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit;
10 }
11
12 /**
13 * Class GhostKit_Extension_Transform
14 */
15 class GhostKit_Extension_Transform {
16 /**
17 * GhostKit_Extension_Transform constructor.
18 */
19 public function __construct() {
20 GhostKit_Extensions::register(
21 'transform',
22 array(
23 'default_supports' => array(
24 'transform' => array(
25 'translate' => true,
26 'scale' => true,
27 'rotate' => true,
28 'skew' => true,
29 'perspective' => true,
30 'origin' => true,
31 ),
32 ),
33 )
34 );
35 }
36 }
37
38 new GhostKit_Extension_Transform();
39