mirror of
https://github.com/Karaka-Management/oms-HumanResourceManagement.git
synced 2026-01-26 10:48:41 +00:00
29 lines
852 B
PHP
29 lines
852 B
PHP
<?php
|
|
|
|
$httpRoutes = [
|
|
'^.*/backend/hr/staff/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\HumanResourceManagement\Controller:viewHrList',
|
|
'verb' => RouteVerb::GET,
|
|
'result' => ViewType::HTML,
|
|
'layout' => ViewLayout::MAIN,
|
|
],
|
|
],
|
|
'^.*/backend/hr/staff/create.*$' => [
|
|
[
|
|
'dest' => '\Modules\HumanResourceManagement\Controller:viewHrCreate',
|
|
'verb' => RouteVerb::GET,
|
|
'result' => ViewType::HTML,
|
|
'layout' => ViewLayout::MAIN,
|
|
],
|
|
],
|
|
'^.*/backend/hr/department/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\HumanResourceManagement\Controller:viewHrDepartmentList',
|
|
'verb' => RouteVerb::GET,
|
|
'result' => ViewType::HTML,
|
|
'layout' => ViewLayout::MAIN,
|
|
],
|
|
],
|
|
];
|