119 lines
4.2 KiB
PHP
119 lines
4.2 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',
|
|
'description' => 'Concert Clinic Dates',
|
|
'value' => 'UNSPECIFIED DATE',
|
|
'type' => 'string',
|
|
],
|
|
'concertClinicLocation' => [
|
|
'key' => 'concertClinicLocation',
|
|
'description' => 'Concert Clinic Location',
|
|
'value' => 'UNSPECIFIED SITE',
|
|
'type' => 'string',
|
|
],
|
|
'beginnerClinicDates' => [
|
|
'key' => 'beginnerClinicDates',
|
|
'description' => 'Beginner Clinic Dates',
|
|
'value' => 'UNSPECIFIED DATE',
|
|
'type' => 'string',
|
|
],
|
|
'beginnerClinicLocation' => [
|
|
'key' => 'beginnerClinicLocation',
|
|
'description' => 'Beginner Clinic Location',
|
|
'value' => 'UNSPECIFIED SITE',
|
|
'type' => 'string',
|
|
],
|
|
'concertAuditionDate' => [
|
|
'key' => 'concertAuditionDate',
|
|
'description' => 'Concert Audition Date',
|
|
'value' => 'UNSPECIFIED DATE',
|
|
'type' => 'string',
|
|
],
|
|
'concertAuditionLocation' => [
|
|
'key' => 'concertAuditionLocation',
|
|
'description' => 'Concert Audition Location',
|
|
'value' => 'UNSPECIFIED SITE',
|
|
'type' => 'string',
|
|
],
|
|
'concertEntryDeadline' => [
|
|
'key' => 'concertEntryDeadline',
|
|
'description' => 'Concert Entry Deadline',
|
|
'value' => 'UNSPECIFIED DATE',
|
|
'type' => 'string',
|
|
],
|
|
'beginnerEntryDeadline' => [
|
|
'key' => 'beginnerEntryDeadline',
|
|
'description' => 'Beginner Entry Deadline',
|
|
'value' => 'UNSPECIFIED DATE',
|
|
'type' => 'string',
|
|
],
|
|
'officers' => [
|
|
'key' => 'officers',
|
|
'description' => 'Officers',
|
|
'value' => '[{"office":"No Officers Defined","name":"No Officers Defined","school":" "}]',
|
|
'type' => 'json',
|
|
],
|
|
'concertEnsembles' => [
|
|
'key' => 'concertEnsembles',
|
|
'description' => 'Concert Ensembles',
|
|
'value' => '[{"name":"No Ensembles Defined","chair":" ","clinician":" "}]',
|
|
'type' => 'json',
|
|
],
|
|
'beginnerEnsembles' => [
|
|
'key' => 'beginnerEnsembles',
|
|
'description' => 'Beginner Ensembles',
|
|
'value' => '[{"name":"No Ensembles Defined","chair":" ","clinician":" "}]',
|
|
'type' => 'json',
|
|
],
|
|
'jazzEnsembles' => [
|
|
'key' => 'jazzEnsembles',
|
|
'description' => 'Jazz Ensembles',
|
|
'value' => '[{"name":"No Ensembles Defined","chair":" ","clinician":" "}]',
|
|
'type' => 'json',
|
|
],
|
|
'concertAuditionFee' => [
|
|
'key' => 'concertAuditionFee',
|
|
'description' => 'Concert Entry Fee',
|
|
'value' => 'NO FEE SET',
|
|
'type' => 'string',
|
|
],
|
|
'concertAuditionAdditionalInformation' => [
|
|
'key' => 'concertAuditionAdditionalInformation',
|
|
'description' => 'Additional information regarding concert auditions',
|
|
'value' => 'NO ADDITIONAL INFORMATION SET',
|
|
'type' => 'text',
|
|
],
|
|
'beginnerAuditionAdditionalInformation' => [
|
|
'key' => 'beginnerAuditionAdditionalInformation',
|
|
'description' => 'Additional information regarding beginner nomination',
|
|
'value' => 'NO ADDITIONAL INFORMATION SET',
|
|
'type' => 'text',
|
|
],
|
|
],
|
|
];
|