# ghostkit/3.3.3/classes/class-templates.php

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

- Page: https://pluginprobe.com/plugins/ghostkit/3.3.3/code/classes/class-templates.php
- Raw: https://pluginprobe.com/plugins/ghostkit/3.3.3/raw/classes/class-templates.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/classes/class-templates.php#L10-L20`.

```php
<?php
/**
 * Templates
 *
 * @deprecated since v3.1.0
 *
 * @package ghostkit
 */

/**
 * GhostKit_Templates
 */
class GhostKit_Templates {
	/**
	 * Is templates feature allowed to display in UI.
	 *
	 * @var boolean
	 */
	public static $is_allowed = null;

	/**
	 * GhostKit_Templates constructor.
	 */
	public static function init() {
		add_action( 'init', 'GhostKit_Templates::add_custom_post_type' );
		add_filter( 'admin_notices', 'GhostKit_Templates::add_templates_page_notice' );

		add_action(
			'wp_loaded',
			function () {
				if ( ! is_admin() ) {
					return;
				}

				$allow_templates = GhostKit_Templates::is_allowed() ? 'true' : 'false';

				// Disable customizer settings from GhostKit.
				wp_add_inline_script( 'ghostkit-helper', 'if (ghostkitVariables) { ghostkitVariables.allowTemplates = ' . $allow_templates . '; }', 'before' );
			},
			9
		);
	}

	/**
	 * Check if displaying Templates allowed.
	 *
	 * @return boolean
	 */
	public static function is_allowed() {
		if ( null !== self::$is_allowed ) {
			return self::$is_allowed;
		}

		self::$is_allowed = false;

		/*
		 * Check theme templates.
		 */
		if ( count( glob( get_template_directory() . '/ghostkit/templates/*/content.php' ) ) ) {
			self::$is_allowed = true;
		}

		/*
		 * Check child theme templates.
		 */
		if ( ! self::$is_allowed && get_stylesheet_directory() !== get_template_directory() && count( glob( get_stylesheet_directory() . '/ghostkit/templates/*/content.php' ) ) ) {
			self::$is_allowed = true;
		}

		/**
		 * Check Templates posts.
		 */
		if ( ! self::$is_allowed ) {
			$db_templates = new WP_Query(
				array(
					'post_type'      => 'ghostkit_template',
					'posts_per_page' => 1,
					'showposts'      => 1,
				)
			);

			self::$is_allowed = $db_templates->have_posts();
		}

		return self::$is_allowed;
	}

	/**
	 * Register custom post type.
	 */
	public static function add_custom_post_type() {
		register_post_type(
			'ghostkit_template',
			array(
				'labels'              => array(
					'name'                => _x( 'Templates', 'Post Type General Name', 'ghostkit' ),
					'singular_name'       => _x( 'Template', 'Post Type Singular Name', 'ghostkit' ),
					'menu_name'           => __( 'Templates', 'ghostkit' ),
					'parent_item_colon'   => __( 'Parent Template', 'ghostkit' ),
					'all_items'           => __( 'Templates', 'ghostkit' ),
					'view_item'           => __( 'View Template', 'ghostkit' ),
					'add_new_item'        => __( 'Add New Template', 'ghostkit' ),
					'add_new'             => __( 'Add New', 'ghostkit' ),
					'edit_item'           => __( 'Edit Template', 'ghostkit' ),
					'update_item'         => __( 'Update Template', 'ghostkit' ),
					'search_items'        => __( 'Search Template', 'ghostkit' ),
					'not_found'           => __( 'Not Found', 'ghostkit' ),
					'not_found_in_trash'  => __( 'Not found in Trash', 'ghostkit' ),
				),
				'public'              => false, // true?
				'publicly_queryable'  => false, // true?
				'has_archive'         => false,
				'show_ui'             => true,
				'exclude_from_search' => true,
				'show_in_nav_menus'   => false,
				'rewrite'             => false,
				'hierarchical'        => false,
				'show_in_menu'        => false,
				'show_in_admin_bar'   => true,
				'show_in_rest'        => true,
				'taxonomies'          => array(
					'ghostkit_template_category',
				),
				'capability_type'     => 'post',
				'supports'            => array(
					'title',
					'editor',
					'thumbnail',
				),
			)
		);

		register_taxonomy(
			'ghostkit_template_category',
			'ghostkit_template',
			array(
				'label'              => esc_html__( 'Categories', 'ghostkit' ),
				'labels'             => array(
					'menu_name' => esc_html__( 'Categories', 'ghostkit' ),
				),
				'rewrite'            => false,
				'hierarchical'       => false,
				'publicly_queryable' => false,
				'show_in_nav_menus'  => false,
				'show_in_rest'       => true,
				'show_admin_column'  => true,
			)
		);
	}

	/**
	 * Show notice in templates list admin page.
	 */
	public static function add_templates_page_notice() {
		$current_screen = get_current_screen();

		if ( ! isset( $current_screen->post_type ) || 'ghostkit_template' !== $current_screen->post_type ) {
			return;
		}

		?>
		<div class="notice notice-error">
			<h3>
				<?php echo esc_html__( 'Templates Deprecated', 'ghostkit' ); ?>
			</h3>
			<p>
				<?php
				echo esc_html__( 'Please avoid using the Templates feature. It has been deprecated since Ghost Kit v3.1.0 and will be removed in future updates.', 'ghostkit' );
				?>
				<br />
				<?php
				echo wp_kses_post( sprintf( __( 'To create a block template, you can use the built-in WordPress feature named Patterns.', 'ghostkit' ), 'https://wordpress.org/documentation/article/site-editor-patterns/' ) );
				?>
			</p>
			<p>
				<a href="https://wordpress.org/documentation/article/site-editor-patterns/" target="_blank" class="button button-primary"><?php echo esc_html__( 'Read About Patterns', 'ghostkit' ); ?></a>
			</p>
		</div>
		<?php
	}
}

GhostKit_Templates::init();

```
