88 lines
2.7 KiB
PHP
88 lines
2.7 KiB
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Cache Key Prefix
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Prefix for data cache keys
|
|
|
|
|
*/
|
|
'cache_key_prefix' => 'site_data_',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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',
|
|
],
|
|
],
|
|
];
|