🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-18 11:29:00 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
ramailobhela.com
/
wp-content
/
plugins
/
woocommerce
/
src
/
Blocks
/
Templates
📍 /home/therahul/ramailobhela.com/wp-content/plugins/woocommerce/src/Blocks/Templates
🔄 Refresh
✏️
Editing: AbstractTemplate.php
Writable
<?php namespace Automattic\WooCommerce\Blocks\Templates; /** * AbstractTemplate class. * * Shared logic for templates. * * @internal */ abstract class AbstractTemplate { /** * The slug of the template. * * @var string */ const SLUG = ''; /** * 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