/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Action
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Action/ActionsBarButton.php (2094B)
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
declare(strict_types=1);
namespace PrestaShop\PrestaShop\Core\Action;
class ActionsBarButton implements ActionsBarButtonInterface
{
/**
* @var string
*/
protected $class;
/**
* @var string[]
*/
protected $properties;
/**
* @var string
*/
protected $content;
/**
* @param string $class
* @param string[] $properties
* @param string $content
*/
public function __construct(string $class = '', array $properties = [], string $content = '')
{
$this->class = $class;
$this->properties = $properties;
$this->content = $content;
}
/**
* @return string
*/
public function getClass(): string
{
return $this->class;
}
/**
* @return string[]
*/
public function getProperties(): array
{
return $this->properties;
}
/**
* @return string
*/
public function getContent(): string
{
return $this->content;
}
}