more fixes for events
This commit is contained in:
parent
f715821cf0
commit
ca36dfecf9
@ -112,7 +112,7 @@ class Happening extends Managed_DataObject
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function saveNew($profile, $start_time, $end_time, $title, $location, $description, $options)
|
function saveNew($profile, $start_time, $end_time, $title, $location, $description, $options=array())
|
||||||
{
|
{
|
||||||
if (array_key_exists('uri', $options)) {
|
if (array_key_exists('uri', $options)) {
|
||||||
$other = Happening::staticGet('uri', $options['uri']);
|
$other = Happening::staticGet('uri', $options['uri']);
|
||||||
|
@ -93,6 +93,14 @@ class NeweventAction extends Action
|
|||||||
$this->location = $this->trimmed('location');
|
$this->location = $this->trimmed('location');
|
||||||
$this->description = $this->trimmed('description');
|
$this->description = $this->trimmed('description');
|
||||||
|
|
||||||
|
$start_date = $this->trimmed('start_date');
|
||||||
|
$start_time = $this->trimmed('start_time');
|
||||||
|
$end_date = $this->trimmed('end_date');
|
||||||
|
$end_time = $this->trimmed('end_time');
|
||||||
|
|
||||||
|
$this->start_time = strtotime($start_date . ' ' . $start_time);
|
||||||
|
$this->end_time = strtotime($end_date . ' ' . $end_time);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -130,15 +138,19 @@ class NeweventAction extends Action
|
|||||||
throw new ClientException(_('Event must have a title.'));
|
throw new ClientException(_('Event must have a title.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($this->url)) {
|
if (empty($this->start_time)) {
|
||||||
throw new ClientException(_('Event must have an URL.'));
|
throw new ClientException(_('Event must have a start time.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (empty($this->end_time)) {
|
||||||
|
throw new ClientException(_('Event must have an end time.'));
|
||||||
|
}
|
||||||
|
|
||||||
$saved = Event::saveNew($this->user->getProfile(),
|
$saved = Event::saveNew($this->user->getProfile(),
|
||||||
|
$this->start_time,
|
||||||
|
$this->end_time,
|
||||||
$this->title,
|
$this->title,
|
||||||
$this->url,
|
$this->location,
|
||||||
$this->tags,
|
|
||||||
$this->description);
|
$this->description);
|
||||||
|
|
||||||
} catch (ClientException $ce) {
|
} catch (ClientException $ce) {
|
||||||
@ -147,7 +159,7 @@ class NeweventAction extends Action
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
common_redirect($saved->bestUrl(), 303);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user