mirror of
https://github.com/Karaka-Management/oms-Marketing.git
synced 2026-01-22 14:28:54 +00:00
34 lines
802 B
PHP
Executable File
34 lines
802 B
PHP
Executable File
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package Modules\Marketing
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
return ['Marketing' => [
|
|
'Actual' => 'Actual',
|
|
'Budget' => 'Budget',
|
|
'Description' => 'Description',
|
|
'End' => 'End',
|
|
'Event' => 'Event',
|
|
'Events' => 'Events',
|
|
'Expenses' => 'Expenses',
|
|
'Limit' => 'Limit',
|
|
'Location' => 'Location',
|
|
'Name' => 'Name',
|
|
'Promotion' => 'Promotion',
|
|
'Promotions' => 'Promotions',
|
|
'Sales' => 'Sales',
|
|
'Start' => 'Start',
|
|
'Status' => 'Status',
|
|
'Title' => 'Title',
|
|
'Type' => 'Type',
|
|
]];
|