Implement handover protocols as a new entity in the helpdesk module, allowing users to create fillable protocol records from admin-defined software product schemas. Key additions: - DB migration (helpdesk_handovers table) with tenant scope - HandoverService with status workflow (draft/in_progress/completed/archived) - Three-tier permissions (view/create/manage) - Two-step creation wizard (Stripe-style assistant) - Grid.js list page with search and status filter - Edit/detail page with aside metadata and status controls - Reusable core autocomplete lookup component (app-lookup-field) - Debitor lookup data endpoint for autocomplete - Dynamic form rendering from schema snapshots - 11 PHPUnit tests for HandoverService - DE+EN i18n translations (48 keys each) Also includes: PHPStan fixes (dead code removal, stale baseline cleanup), software product edit title improvement, fieldset simplification, and Stripe-style hover for schema preview. Workflow: HD-HANDOVERS-001 (.agents/runs/HD-HANDOVERS-001/) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
49 lines
2.3 KiB
PHP
49 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace MintyPHP\Module\Helpdesk\Providers;
|
|
|
|
use MintyPHP\App\AppContainer;
|
|
use MintyPHP\App\Module\Contracts\LayoutContextProvider;
|
|
use MintyPHP\Service\Access\AuthorizationService;
|
|
|
|
final class HelpdeskLayoutProvider implements LayoutContextProvider
|
|
{
|
|
public function provide(array $session, AppContainer $container): array
|
|
{
|
|
$userId = (int) ($session['user']['id'] ?? 0);
|
|
if ($userId <= 0) {
|
|
return ['helpdesk.nav' => ['can_manage_settings' => false]];
|
|
}
|
|
|
|
try {
|
|
$authorizationService = $container->get(AuthorizationService::class);
|
|
$actorContext = ['actor_user_id' => $userId];
|
|
$canManageSettings = $authorizationService->authorize('helpdesk.settings.manage', $actorContext)->isAllowed();
|
|
$canViewTeam = $authorizationService->authorize('helpdesk.team-workload.view', $actorContext)->isAllowed();
|
|
$canViewRiskRadar = $authorizationService->authorize('helpdesk.risk-radar.view', $actorContext)->isAllowed();
|
|
$canManageSoftwareProducts = $authorizationService->authorize('helpdesk.software-products.manage', $actorContext)->isAllowed();
|
|
$canViewHandovers = $authorizationService->authorize('helpdesk.handovers.view', $actorContext)->isAllowed();
|
|
$canCreateHandovers = $authorizationService->authorize('helpdesk.handovers.create', $actorContext)->isAllowed();
|
|
$canManageHandovers = $authorizationService->authorize('helpdesk.handovers.manage', $actorContext)->isAllowed();
|
|
} catch (\Throwable) {
|
|
$canManageSettings = false;
|
|
$canViewTeam = false;
|
|
$canViewRiskRadar = false;
|
|
$canManageSoftwareProducts = false;
|
|
$canViewHandovers = false;
|
|
$canCreateHandovers = false;
|
|
$canManageHandovers = false;
|
|
}
|
|
|
|
return ['helpdesk.nav' => [
|
|
'can_manage_settings' => $canManageSettings,
|
|
'can_view_team' => $canViewTeam,
|
|
'can_view_risk_radar' => $canViewRiskRadar,
|
|
'can_manage_software_products' => $canManageSoftwareProducts,
|
|
'can_view_handovers' => $canViewHandovers,
|
|
'can_create_handovers' => $canCreateHandovers,
|
|
'can_manage_handovers' => $canManageHandovers,
|
|
]];
|
|
}
|
|
}
|