'status' => array (
'field' => 'status',
'type' => 'list',
- 'list' => $this->config['status'],
+ 'list' => $this->config['event_status'],
'required' => true,
'default' => $this->config['status_numb']['Pending'],
'use' => 'a'
; Main Configuration File
; Gaslight Media Members Database Events Add-On Plugin
;
-; Place any static configuration parameters here.
+; Place any static configuration parameters here.
;
[common]
+
+; Entry Status Types
+;
+event_status[10] = 'Active'
+event_status[20] = 'Pending Review'
+event_status[30] = 'Inactive'
+event_status[40] = 'Declined'
+event_status[90] = 'Archived'
+
+event_status_numb['Active'] = 10
+event_status_numb['Pending'] = 20
+event_status_numb['Inactive'] = 30
+event_status_numb['Declined'] = 40
+event_status_numb['Archived'] = 90