Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

fix: Add horizontal navgation to enable/disable messaging page #72

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,17 @@
use Laminas\View\Model\ViewModel;
use Olcs\Controller\Application\ApplicationController;
use Olcs\Controller\Interfaces\LeftViewProvider;
use Olcs\Controller\Interfaces\NavigationIdProvider;
use Olcs\Data\Mapper\Task;
use Olcs\Form\Model\Form\DisableConversations;
use Olcs\Form\Model\Form\DisableConversationsPopup;
use Olcs\Form\Model\Form\EnableConversations;
use Olcs\Form\Model\Form\EnableConversationsPopup;

class LicenceEnableDisableMessagingController extends ApplicationController
implements LeftViewProvider, ToggleAwareInterface
implements LeftViewProvider, ToggleAwareInterface, NavigationIdProvider
{
protected $navigationId = 'application_conversations';
protected $navigationId = 'licence';
protected $toggleConfig = [
'default' => [FeatureToggle::MESSAGING],
];
Expand Down Expand Up @@ -116,4 +117,9 @@ public function getLeftView(): ?ViewModel

return $view;
}

public function getNavigationId()
{
return $this->navigationId;
}
}
Loading