📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 11:51:29
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
plugins
/
woocommerce
/
src
/
Blocks
/
Templates
✏️
Editing: 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(); }
💾 Save Changes
❌ Cancel