82 lines
1.9 KiB
PHP
82 lines
1.9 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'page_status_options' => [
|
|
'0' => 'Draft',
|
|
'1' => 'Published',
|
|
],
|
|
|
|
'page_type_options' => [
|
|
'page' => 'Page',
|
|
'widget' => 'Widget',
|
|
],
|
|
|
|
'menu_type_options' => [
|
|
'single-link' => 'Custom',
|
|
'pages' => "Page",
|
|
'blogs' => "Blog",
|
|
'services' => "Service",
|
|
'countries' => "Country",
|
|
],
|
|
|
|
'menu_location_options' => [
|
|
'1' => 'Main Menu',
|
|
'2' => "Footer Menu",
|
|
],
|
|
|
|
'redirect_options' => [
|
|
'_self' => 'Self',
|
|
'_blank' => 'New Tab',
|
|
],
|
|
|
|
'page_section_options' => [
|
|
'meta-section' => 'Meta',
|
|
'featured-image-section' => 'Featured Image',
|
|
'media-gallery-section' => 'Media Gallery',
|
|
'sidebar-section' => 'Sidebar',
|
|
'button-section' => 'Button',
|
|
'custom-field-section' => 'Custom Fields',
|
|
'link-section' => 'Link',
|
|
],
|
|
|
|
"gender_options" => [
|
|
"1" => "Male",
|
|
"2" => "Female",
|
|
],
|
|
|
|
"employee_status_options" => [
|
|
'active' => 'Active',
|
|
'on_leave' => 'On Leave',
|
|
'probation' => 'Probation',
|
|
'resigned' => 'Resigned',
|
|
'terminated' => 'Terminated',
|
|
'retired' => 'Retired',
|
|
'deceased' => 'Deceased',
|
|
'laid_off' => 'Laid Off',
|
|
'on_notice' => 'On Notice',
|
|
'suspended' => 'Suspended',
|
|
'furloughed' => 'Furloughed',
|
|
'part_time' => 'Part-Time',
|
|
'consultant' => 'Consultant',
|
|
'freelance' => 'Freelance',
|
|
],
|
|
|
|
'event_type_options' => [
|
|
1 => 'Meeting',
|
|
2 => 'Training Sessions',
|
|
3 => 'Seminars',
|
|
4 => 'Celebrations',
|
|
5 => 'Product Launches',
|
|
6 => 'Wellness Events',
|
|
],
|
|
|
|
'content_status_options' => [
|
|
11 => 'Draft',
|
|
12 => 'Scheduled',
|
|
13 => 'Published',
|
|
14 => 'Archived',
|
|
],
|
|
|
|
];
|