Mods-for-HESK-Netsyms/api/BusinessLogic/Navigation/CustomNavElementHandler.php
2017-05-08 21:56:30 -04:00

32 lines
663 B
PHP

<?php
namespace BusinessLogic\Navigation;
// TODO Test!
use DataAccess\Navigation\CustomNavElementGateway;
class CustomNavElementHandler {
/* @var $customNavElementGateway CustomNavElementGateway */
private $customNavElementGateway;
function __construct($customNavElementGateway) {
$this->customNavElementGateway = $customNavElementGateway;
}
function getAllCustomNavElements($heskSettings) {
return $this->customNavElementGateway->getAllCustomNavElements($heskSettings);
}
function deleteCustomNavElement() {
}
function saveCustomNavElement() {
}
function createCustomNavElement() {
}
}