# ghostkit/3.3.0/classes/3rd/class-page-builder-framework.php

Block Animations, Motion &amp; Scroll Effects – Ghost Kit, version 3.3.0. 31 lines.

- Page: https://pluginprobe.com/plugins/ghostkit/3.3.0/code/classes/3rd/class-page-builder-framework.php
- Raw: https://pluginprobe.com/plugins/ghostkit/3.3.0/raw/classes/3rd/class-page-builder-framework.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.0/code/classes/3rd/class-page-builder-framework.php#L10-L20`.

```php
<?php
/**
 * Page Builder Framework theme.
 *
 * @package ghostkit
 */

/**
 * GhostKit_3rd_Page_Builder_Framework
 */
class GhostKit_3rd_Page_Builder_Framework {
	/**
	 * GhostKit_3rd_Page_Builder_Framework constructor.
	 */
	public function __construct() {
		if ( 'page-builder-framework' !== get_template() ) {
			return;
		}

		add_filter( 'gkt_custom_css_allow_js_fallback', '__return_false' );
		add_filter(
			'gkt_parse_blocks_methods',
			function() {
				return array( 'modern', 'classic' );
			}
		);
	}
}

new GhostKit_3rd_Page_Builder_Framework();

```
