27 lines
396 B
PHP
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();
|
|
}
|