declare( strict_types=1 );
namespace Automattic\WooCommerce\Blocks\Templates;
* AbstractTemplate class.
* Shared logic for templates.
abstract class AbstractTemplate {
* The slug of the template.
* Whether this is a taxonomy template.
public bool $is_taxonomy_template = false;
abstract public function init();
* Should return the title of the template.
abstract public function get_template_title();
* Should return the description of the template.
abstract public function get_template_description();