for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
* @copyright Aimeos (aimeos.org), 2018-2022
* @package Client
* @subpackage Html
*/
namespace Aimeos\Client\Html\Catalog\Attribute;
* Default implementation of catalog attribute HTML client
*
class Standard
extends \Aimeos\Client\Html\Catalog\Filter\Standard
implements \Aimeos\Client\Html\Common\Client\Factory\Iface
{
* Returns the HTML string for insertion into the header.
* @param string $uid Unique identifier for the output if the content is placed more than once on the same page
* @return string|null String including HTML tags for the header on error
public function header( string $uid = '' ) : ?string
return null;
}
* Returns the names of the subpart clients
* @return array List of client names
protected function getSubClientNames() : array
return ['attribute'];