Store organisator email
This commit is contained in:
@ -8,7 +8,7 @@ class CreateEvent {
|
||||
public function __construct() {
|
||||
global $_POST, $_REQUEST, $dbHandler;
|
||||
|
||||
$use_data = ['event_name', 'startdatum', 'enddatum','max_participants', 'max_volunteers', 'amount_reduced', 'amount_default', 'amount_social', 'contributing_tribes'];
|
||||
$use_data = ['event_name', 'event_email', 'startdatum', 'enddatum','max_participants', 'max_volunteers', 'amount_reduced', 'amount_default', 'amount_social', 'contributing_tribes'];
|
||||
$post_data = [];
|
||||
foreach ($_POST as $key => $value) {
|
||||
if (in_array($key, $use_data)) {
|
||||
|
@ -8,7 +8,7 @@ class UpdateEvent {
|
||||
public function __construct() {
|
||||
global $_POST, $_REQUEST, $dbHandler;
|
||||
|
||||
$use_data = ['event_name', 'startdatum', 'enddatum','max_participants', 'max_volunteers', 'amount_reduced', 'amount_default', 'amount_social', 'contributing_tribes'];
|
||||
$use_data = ['event_name', 'event_email', 'startdatum', 'enddatum','max_participants', 'max_volunteers', 'amount_reduced', 'amount_default', 'amount_social', 'contributing_tribes'];
|
||||
$post_data = [];
|
||||
foreach ($_POST as $key => $value) {
|
||||
if (in_array($key, $use_data)) {
|
||||
|
@ -32,9 +32,7 @@ class Event extends CommonModel {
|
||||
}
|
||||
}
|
||||
|
||||
#echo '<pre>';print_r($class);die();
|
||||
return $class;
|
||||
|
||||
}
|
||||
|
||||
public function __construct() {
|
||||
|
@ -31,6 +31,14 @@ function kompass_print_event_edit_form(?int $event_id = null)
|
||||
'events_settings',
|
||||
['setting' => 'event_name', 'style' => 'width: 1024px', 'value' => null !== $event ? $event->event_name : '']);
|
||||
|
||||
add_settings_field(
|
||||
'event_settings_1b',
|
||||
__('Organisator E-Mail', BDP_LV_PLUGIN_SLUG),
|
||||
'kompass_print_textbox',
|
||||
$events_settings,
|
||||
'events_settings',
|
||||
['setting' => 'event_email', 'style' => 'width: 1024px', 'value' => null !== $event ? $event->event_email : '']);
|
||||
|
||||
add_settings_field(
|
||||
'event_settings_2',
|
||||
__('Start date', BDP_LV_PLUGIN_SLUG),
|
||||
|
Reference in New Issue
Block a user