mirror of
https://github.com/friendica/friendica
synced 2024-11-10 06:22:53 +00:00
event listings
This commit is contained in:
parent
452245d988
commit
9f51233451
4 changed files with 27 additions and 5 deletions
|
@ -276,7 +276,7 @@ function get_first_dim($y,$m) {
|
||||||
|
|
||||||
|
|
||||||
if(! function_exists('cal')) {
|
if(! function_exists('cal')) {
|
||||||
function cal($y = 0,$m = 0, $links = false) {
|
function cal($y = 0,$m = 0, $links = false, $class='') {
|
||||||
|
|
||||||
|
|
||||||
// month table - start at 1 to match human usage.
|
// month table - start at 1 to match human usage.
|
||||||
|
@ -306,7 +306,7 @@ function cal($y = 0,$m = 0, $links = false) {
|
||||||
$tddate = intval(datetime_convert('UTC',date_default_timezone_get(),'now','j'));
|
$tddate = intval(datetime_convert('UTC',date_default_timezone_get(),'now','j'));
|
||||||
|
|
||||||
$str_month = day_translate($mtab[$m]);
|
$str_month = day_translate($mtab[$m]);
|
||||||
$o = '<table class="calendar">';
|
$o = '<table class="calendar' . $class . '">';
|
||||||
$o .= "<caption>$str_month $y</caption><tr>";
|
$o .= "<caption>$str_month $y</caption><tr>";
|
||||||
for($a = 0; $a < 7; $a ++)
|
for($a = 0; $a < 7; $a ++)
|
||||||
$o .= '<th>' . mb_substr(day_translate($dn[$a]),0,3,'UTF-8') . '</th>';
|
$o .= '<th>' . mb_substr(day_translate($dn[$a]),0,3,'UTF-8') . '</th>';
|
||||||
|
|
|
@ -3,12 +3,14 @@
|
||||||
|
|
||||||
function format_event_html($ev) {
|
function format_event_html($ev) {
|
||||||
|
|
||||||
|
require_once('include/bbcode.php');
|
||||||
|
|
||||||
if(! ((is_array($ev)) && count($ev)))
|
if(! ((is_array($ev)) && count($ev)))
|
||||||
return '';
|
return '';
|
||||||
|
|
||||||
$o = '<div class="vevent">';
|
$o = '<div class="vevent">';
|
||||||
|
|
||||||
$o .= '<p class="description">' . $ev['desc'] . '</p>';
|
$o .= '<p class="description">' . bbcode($ev['desc']) . '</p>';
|
||||||
|
|
||||||
$o .= '<p>' . t('Starts: ') . '<abbr class="dtstart" title="'
|
$o .= '<p>' . t('Starts: ') . '<abbr class="dtstart" title="'
|
||||||
. datetime_convert('UTC','UTC',$ev['start'], ATOM_TIME)
|
. datetime_convert('UTC','UTC',$ev['start'], ATOM_TIME)
|
||||||
|
@ -25,7 +27,7 @@ function format_event_html($ev) {
|
||||||
. '</abbr></p>';
|
. '</abbr></p>';
|
||||||
|
|
||||||
$o .= '<p> ' . t('Location:') . '<span class="location">'
|
$o .= '<p> ' . t('Location:') . '<span class="location">'
|
||||||
. $ev['location']
|
. bbcode($ev['location'])
|
||||||
. '</span></p>';
|
. '</span></p>';
|
||||||
|
|
||||||
$o .= '</div>';
|
$o .= '</div>';
|
||||||
|
|
|
@ -90,6 +90,8 @@ function events_content(&$a) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$o .= '<h2>' . t('Events') . '</h2>';
|
||||||
|
|
||||||
$mode = 'view';
|
$mode = 'view';
|
||||||
$y = 0;
|
$y = 0;
|
||||||
$m = 0;
|
$m = 0;
|
||||||
|
@ -119,7 +121,22 @@ function events_content(&$a) {
|
||||||
$m = intval($thismonth);
|
$m = intval($thismonth);
|
||||||
|
|
||||||
|
|
||||||
$o .= cal($y,$m,false);
|
$o .= cal($y,$m,false, ' eventcal');
|
||||||
|
|
||||||
|
$dim = get_dim($y,$m);
|
||||||
|
$start = sprintf('%d-%d-%d %d:%d:%d',$y,$m,1,0,0,0);
|
||||||
|
$finish = sprintf('%d-%d-%d %d:%d:%d',$y,$m,$dim,23,59,59);
|
||||||
|
|
||||||
|
|
||||||
|
$r = q("SELECT * FROM `event` WHERE `start` >= '%s' AND `finish` <= '%s' AND `uid` = %d ",
|
||||||
|
dbesc($start),
|
||||||
|
dbesc($finish),
|
||||||
|
intval(local_user())
|
||||||
|
);
|
||||||
|
|
||||||
|
if(count($r))
|
||||||
|
foreach($r as $rr)
|
||||||
|
$o .= format_event_html($rr);
|
||||||
|
|
||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2223,6 +2223,9 @@ a.mail-list-link {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.eventcal {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
.calendar {
|
.calendar {
|
||||||
font-family: Courier, monospace;
|
font-family: Courier, monospace;
|
||||||
|
|
Loading…
Reference in a new issue