friendica/include/event.php

76 lines
1.9 KiB
PHP
Raw Normal View History

2011-05-28 06:01:30 +02:00
<?php
/**
* @file include/event.php
* @brief functions specific to event handling
*/
2011-05-28 06:01:30 +02:00
2015-10-17 09:41:58 +02:00
function format_event_html($ev, $simple = false) {
return \Friendica\Model\Event::getHTML($ev, $simple);
2011-06-08 05:10:43 +02:00
}
2011-06-10 01:24:29 +02:00
function format_event_bbcode($ev) {
return \Friendica\Model\Event::getBBCode($ev);
2011-06-10 01:24:29 +02:00
}
function bbtoevent($s) {
return \Friendica\Model\Event::fromBBCode($s);
2011-06-10 01:24:29 +02:00
}
2017-01-16 21:59:16 +01:00
function sort_by_date($a) {
return \Friendica\Model\Event::sortByDate($a);
2011-06-06 08:10:07 +02:00
}
2015-10-17 01:25:25 +02:00
function event_delete($event_id) {
\Friendica\Model\Event::delete($event_id);
2015-10-17 01:25:25 +02:00
}
2011-06-14 04:06:49 +02:00
function event_store($arr) {
return \Friendica\Model\Event::store($arr);
2011-06-14 04:06:49 +02:00
}
function get_event_strings() {
return \Friendica\Model\Event::getStrings();
}
function event_remove_duplicates($dates) {
return \Friendica\Model\Event::removeDuplicates($dates);
}
function event_by_id($owner_uid = 0, $event_params, $sql_extra = '') {
return \Friendica\Model\Event::getListById($owner_uid, $event_params['event-id'], $sql_extra);
}
function events_by_date($owner_uid = 0, $event_params, $sql_extra = '') {
$event_params['ignore'] = $event_params['ignored'];
return \Friendica\Model\Event::getListByDate($owner_uid, $event_params, $sql_extra);
}
function process_events($arr) {
return \Friendica\Model\Event::prepareListForTemplate($arr);
}
function event_format_export($events, $format = 'ical', $timezone)
{
return \Friendica\Model\Event::formatListForExport($events, $format, $timezone);
}
function events_by_uid($uid = 0, $sql_extra = '') {
return \Friendica\Model\Event::getListByUserId($uid);
}
function event_export($uid, $format = 'ical') {
return \Friendica\Model\Event::exportListByUserId($uid, $format);
}
function widget_events() {
return \Friendica\Content\Widget\CalendarExport::getHTML();
}
function format_event_item($item) {
return \Friendica\Model\Event::getItemHTML($item);
}
function event_location2array($s = '') {
return \Friendica\Model\Event::locationToArray($s);
}