meobda-website/config/siteData.php

104 lines
3.4 KiB
PHP

<?php
return [
/*
/*
|--------------------------------------------------------------------------
| Cache Data
|--------------------------------------------------------------------------
|
| Prefix and TTL for data cache keys
|
*/
'cache_key_prefix' => 'site_data_',
'cache_ttl' => env('SITE_DATA_CACHE_TTL', 86400), // seconds
/*
|--------------------------------------------------------------------------
| Default Site Data
|--------------------------------------------------------------------------
|
| This option sets default values for site data that is not yet defined
| in the database.
|
*/
'defaults' => [
'concertClinicDates' => [
'key' => 'concertClinicDates',
'value' => 'UNSPECIFIED DATE',
'type' => 'string',
],
'concertClinicLocation' => [
'key' => 'concertClinicLocation',
'value' => 'UNSPECIFIED SITE',
'type' => 'string',
],
'beginnerClinicDates' => [
'key' => 'beginnerClinicDates',
'value' => 'UNSPECIFIED DATE',
'type' => 'string',
],
'beginnerClinicLocation' => [
'key' => 'beginnerClinicLocation',
'value' => 'UNSPECIFIED SITE',
'type' => 'string',
],
'concertAuditionDate' => [
'key' => 'concertAuditionDate',
'value' => 'UNSPECIFIED DATE',
'type' => 'string',
],
'concertAuditionLocation' => [
'key' => 'concertAuditionLocation',
'value' => 'UNSPECIFIED SITE',
'type' => 'string',
],
'concertEntryDeadline' => [
'key' => 'concertEntryDeadline',
'value' => 'UNSPECIFIED DATE',
'type' => 'string',
],
'beginnerEntryDeadline' => [
'key' => 'beginnerEntryDeadline',
'value' => 'UNSPECIFIED DATE',
'type' => 'string',
],
'officers' => [
'key' => 'officers',
'value' => '[{"office":"No Officers Defined","name":"No Officers Defined","school":" "}]',
'type' => 'json',
],
'concertEnsembles' => [
'key' => 'concertEnsembles',
'value' => '[{"name":"No Ensembles Defined","chair":" ","clinician":" "}]',
'type' => 'json',
],
'beginnerEnsembles' => [
'key' => 'beginnerEnsembles',
'value' => '[{"name":"No Ensembles Defined","chair":" ","clinician":" "}]',
'type' => 'json',
],
'jazzEnsembles' => [
'key' => 'jazzEnsembles',
'value' => '[{"name":"No Ensembles Defined","chair":" ","clinician":" "}]',
'type' => 'json',
],
'concertAuditionFee' => [
'key' => 'concertAuditionFee',
'value' => 'NO FEE SET',
'type' => 'string',
],
'concertAuditionAdditionalInformation' => [
'key' => 'concertAuditionAdditionalInformation',
'value' => 'NO ADDITIONAL INFORMATION SET',
'type' => 'string',
],
'beginnerAuditionAdditionalInformation' => [
'key' => 'beginnerAuditionAdditionalInformation',
'value' => 'NO ADDITIONAL INFORMATION SET',
'type' => 'string',
]
],
];