ÿØÿà JFIF H H ÿÛ C GIF89;
| System: Linux server378.web-hosting.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64 Current Path : /home/aliyykcz/public_html/wp-content/plugins/woocommerce/src/Blocks/Templates/ |
| Current File : /home/aliyykcz/public_html/wp-content/plugins/woocommerce/src/Blocks/Templates/AbstractTemplate.php |
<?php
declare( strict_types=1 );
namespace Automattic\WooCommerce\Blocks\Templates;
/**
* AbstractTemplate class.
*
* Shared logic for templates.
*
* @internal
*/
abstract class AbstractTemplate {
/**
* The slug of the template.
*
* @var string
*/
const SLUG = '';
/**
* Whether this is a taxonomy template.
*
* @var bool
*/
public bool $is_taxonomy_template = false;
/**
* Initialization method.
*/
abstract public function init();
/**
* Should return the title of the template.
*
* @return string
*/
abstract public function get_template_title();
/**
* Should return the description of the template.
*
* @return string
*/
abstract public function get_template_description();
}