Files
kupshop/bundles/KupShop/POSBundle/Util/PosTabInterface.php
2025-08-02 16:30:27 +02:00

27 lines
396 B
PHP

<?php
namespace KupShop\POSBundle\Util;
interface PosTabInterface
{
/**
* @return string Title for interface
*/
public function getTitle();
/**
* @return string unique id
*/
public function getId();
/**
* @return string Value for iframe
*/
public function getUrl();
/**
* @return bool
*/
public function isAllowed();
}