PATH:
home
/
vcomplcotr
/
www
/
wp-content
/
plugins
/
akeebabackupwp
/
app
/
vendor
/
akeeba
/
awf
/
src
/
Html
<?php /** * @package awf * @copyright Copyright (c)2014-2026 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU GPL version 3 or later */ namespace Awf\Html; use Awf\Container\ContainerAwareInterface; use Awf\Container\ContainerAwareTrait; /** * Abstract implementation of an HTML helper. * * @since 1.1.0 */ abstract class AbstractHelper implements HtmlHelperInterface, ContainerAwareInterface { use ContainerAwareTrait; protected $name = ''; /** @inheritDoc */ public function getName(): string { if (empty($this->name)) { $parts = explode('\\', get_class($this)); $this->name = strtolower(array_pop($parts)); } return $this->name; } }
[+]
..
[-] AbstractHelper.php
[edit]
[-] HtmlHelperInterface.php
[edit]
[-] Accordion.php
[edit]
[-] Grid.php
[edit]
[-] Behaviour.php
[edit]
[-] Tabs.php
[edit]
[-] Html.php
[edit]
[-] Select.php
[edit]
[+]
Helper
[-] HtmlService.php
[edit]