1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482: 483: 484: 485: 486: 487: 488: 489: 490: 491: 492: 493: 494: 495: 496: 497: 498: 499: 500: 501: 502: 503: 504: 505: 506: 507: 508: 509: 510: 511: 512: 513: 514: 515: 516: 517: 518: 519: 520: 521: 522: 523: 524: 525: 526: 527: 528: 529: 530: 531: 532: 533: 534: 535: 536: 537: 538: 539: 540: 541: 542: 543: 544: 545: 546: 547: 548: 549: 550: 551: 552: 553: 554: 555: 556: 557: 558: 559: 560: 561: 562: 563: 564: 565: 566: 567: 568: 569: 570: 571: 572: 573: 574: 575: 576: 577: 578: 579: 580: 581: 582: 583: 584: 585: 586: 587: 588: 589: 590: 591: 592: 593: 594: 595: 596: 597: 598: 599: 600: 601: 602: 603: 604: 605: 606: 607: 608: 609: 610: 611: 612: 613: 614: 615: 616: 617: 618: 619: 620: 621: 622: 623: 624: 625: 626: 627: 628: 629: 630: 631: 632: 633: 634: 635: 636: 637: 638: 639: 640: 641: 642: 643: 644: 645: 646: 647: 648: 649: 650: 651: 652: 653: 654: 655: 656: 657: 658: 659: 660: 661: 662: 663: 664: 665: 666: 667: 668: 669: 670: 671: 672: 673: 674: 675: 676: 677: 678: 679: 680: 681: 682: 683: 684: 685: 686: 687: 688: 689: 690: 691: 692: 693: 694: 695: 696: 697: 698: 699: 700: 701: 702: 703: 704: 705: 706: 707: 708: 709: 710: 711: 712: 713: 714: 715: 716: 717: 718: 719: 720: 721: 722: 723: 724: 725:
<?php
if (!defined('SMF'))
die('No direct access...');
function CalendarMain()
{
global $txt, $context, $modSettings, $scripturl, $options, $sourcedir, $user_info, $smcFunc;
isAllowedTo('calendar_view');
$context['calendar_resources'] = array(
'min_year' => $modSettings['cal_minyear'],
'max_year' => $modSettings['cal_maxyear'],
);
$subActions = array(
'ical' => 'iCalDownload',
'post' => 'CalendarPost',
);
if (isset($_GET['sa']) && isset($subActions[$_GET['sa']]))
return call_helper($subActions[$_GET['sa']]);
if (empty($modSettings['cal_enabled']))
fatal_lang_error('calendar_off', false);
loadTemplate('Calendar');
loadCSSFile('calendar.css', array('force_current' => false, 'validate' => true, 'rtl' => 'calendar.rtl.css'), 'smf_calendar');
if (isset($_GET['event']))
{
$evid = (int) $_GET['event'];
if ($evid > 0)
{
$request = $smcFunc['db_query']('', '
SELECT start_date
FROM {db_prefix}calendar
WHERE id_event = {int:event_id}',
array(
'event_id' => $evid,
)
);
if ($row = $smcFunc['db_fetch_assoc']($request))
{
$_REQUEST['start_date'] = $row['start_date'];
$context['selected_event'] = $evid;
}
$smcFunc['db_free_result']($request);
}
unset ($_GET['event']);
}
$context['page_title'] = $txt['calendar'];
if (empty($options['calendar_default_view']))
$options['calendar_default_view'] = 'viewlist';
if (isset($_GET['viewweek']))
$context['calendar_view'] = 'viewweek';
elseif (isset($_GET['viewmonth']))
$context['calendar_view'] = 'viewmonth';
elseif (isset($_GET['viewlist']))
$context['calendar_view'] = 'viewlist';
else
$context['calendar_view'] = $options['calendar_default_view'];
if ($context['calendar_view'] !== $options['calendar_default_view'])
$context['robot_no_index'] = true;
require_once($sourcedir . '/Subs-Calendar.php');
$today = getTodayInfo();
if (!empty($_REQUEST['start_date']))
{
$start_parsed = date_parse($_REQUEST['start_date']);
if (empty($start_parsed['error_count']) && empty($start_parsed['warning_count']))
{
$_REQUEST['year'] = $start_parsed['year'];
$_REQUEST['month'] = $start_parsed['month'];
$_REQUEST['day'] = $start_parsed['day'];
}
}
$year = !empty($_REQUEST['year']) ? (int) $_REQUEST['year'] : $today['year'];
$month = !empty($_REQUEST['month']) ? (int) $_REQUEST['month'] : $today['month'];
$day = !empty($_REQUEST['day']) ? (int) $_REQUEST['day'] : (!empty($_REQUEST['month']) ? 1 : $today['day']);
$start_object = checkdate($month, $day, $year) === true ? date_create(implode('-', array($year, $month, $day))) : date_create(implode('-', array($today['year'], $today['month'], $today['day'])));
if (!empty($_REQUEST['end_date']))
{
$end_parsed = date_parse($_REQUEST['end_date']);
if (empty($end_parsed['error_count']) && empty($end_parsed['warning_count']))
{
$_REQUEST['end_year'] = $end_parsed['year'];
$_REQUEST['end_month'] = $end_parsed['month'];
$_REQUEST['end_day'] = $end_parsed['day'];
}
}
$end_year = !empty($_REQUEST['end_year']) ? (int) $_REQUEST['end_year'] : null;
$end_month = !empty($_REQUEST['end_month']) ? (int) $_REQUEST['end_month'] : null;
$end_day = !empty($_REQUEST['end_day']) ? (int) $_REQUEST['end_day'] : null;
$end_object = checkdate($end_month, $end_day, $end_year) === true ? date_create(implode('-', array($end_year, $end_month, $end_day))) : null;
if (empty($end_object) || $start_object >= $end_object)
{
$num_days_shown = empty($modSettings['cal_days_for_index']) || $modSettings['cal_days_for_index'] < 1 ? 1 : $modSettings['cal_days_for_index'];
$end_object = date_create(date_format($start_object, 'Y-m-d'));
date_add($end_object, date_interval_create_from_date_string($num_days_shown . ' days'));
}
$curPage = array(
'year' => date_format($start_object, 'Y'),
'month' => date_format($start_object, 'n'),
'day' => date_format($start_object, 'j'),
'start_date' => date_format($start_object, 'Y-m-d'),
'end_year' => date_format($end_object, 'Y'),
'end_month' => date_format($end_object, 'n'),
'end_day' => date_format($end_object, 'j'),
'end_date' => date_format($end_object, 'Y-m-d'),
);
if ($curPage['month'] < 1 || $curPage['month'] > 12)
fatal_lang_error('invalid_month', false);
if ($curPage['year'] < $modSettings['cal_minyear'] || $curPage['year'] > $modSettings['cal_maxyear'])
fatal_lang_error('invalid_year', false);
if ($context['calendar_view'] != 'viewmonth')
{
$isValid = checkdate($curPage['month'], $curPage['day'], $curPage['year']);
if (!$isValid)
fatal_lang_error('invalid_day', false);
}
$calendarOptions = array(
'start_day' => !empty($options['calendar_start_day']) ? $options['calendar_start_day'] : 0,
'show_birthdays' => in_array($modSettings['cal_showbdays'], array(1, 2)),
'show_events' => in_array($modSettings['cal_showevents'], array(1, 2)),
'show_holidays' => in_array($modSettings['cal_showholidays'], array(1, 2)),
'show_week_num' => true,
'short_day_titles' => !empty($modSettings['cal_short_days']),
'short_month_titles' => !empty($modSettings['cal_short_months']),
'show_next_prev' => !empty($modSettings['cal_prev_next_links']),
'show_week_links' => isset($modSettings['cal_week_links']) ? $modSettings['cal_week_links'] : 0,
);
if ($context['calendar_view'] == 'viewlist')
$context['calendar_grid_main'] = getCalendarList($curPage['start_date'], $curPage['end_date'], $calendarOptions);
elseif ($context['calendar_view'] == 'viewweek')
$context['calendar_grid_main'] = getCalendarWeek($curPage['start_date'], $calendarOptions);
else
$context['calendar_grid_main'] = getCalendarGrid($curPage['start_date'], $calendarOptions);
$context['calendar_grid_current'] = getCalendarGrid($curPage['start_date'], $calendarOptions);
if ($context['calendar_grid_current']['previous_calendar']['year'] > $modSettings['cal_minyear'] || $curPage['month'] != 1)
$context['calendar_grid_prev'] = getCalendarGrid($context['calendar_grid_current']['previous_calendar']['start_date'], $calendarOptions, true);
if ($context['calendar_grid_current']['next_calendar']['year'] < $modSettings['cal_maxyear'] || $curPage['month'] != 12)
$context['calendar_grid_next'] = getCalendarGrid($context['calendar_grid_current']['next_calendar']['start_date'], $calendarOptions);
$context['allow_calendar_event'] = allowedTo('calendar_post');
if ($context['allow_calendar_event'] && empty($modSettings['cal_allow_unlinked']) && !$user_info['is_admin'])
{
$boards_can_post = boardsAllowedTo('post_new');
$context['allow_calendar_event'] &= !empty($boards_can_post);
}
$context['can_post'] = $context['allow_calendar_event'];
$context['current_day'] = $curPage['day'];
$context['current_month'] = $curPage['month'];
$context['current_year'] = $curPage['year'];
$context['show_all_birthdays'] = isset($_GET['showbd']);
$context['blocks_disabled'] = !empty($modSettings['cal_disable_prev_next']) ? 1 : 0;
if ($context['calendar_view'] != 'viewlist')
$context['page_title'] .= ' - ' . ($context['calendar_view'] == 'viewweek' ? $context['calendar_grid_main']['week_title'] : $txt['months'][$context['current_month']] . ' ' . $context['current_year']);
$context['linktree'][] = array(
'url' => $scripturl . '?action=calendar',
'name' => $txt['calendar']
);
$context['linktree'][] = array(
'url' => $scripturl . '?action=calendar;year=' . $context['current_year'] . ';month=' . $context['current_month'],
'name' => $txt['months'][$context['current_month']] . ' ' . $context['current_year']
);
if ($context['calendar_view'] == 'viewweek')
$context['linktree'][] = array(
'url' => $scripturl . '?action=calendar;viewweek;year=' . $context['current_year'] . ';month=' . $context['current_month'] . ';day=' . $context['current_day'],
'name' => $context['calendar_grid_main']['week_title'],
);
$context['calendar_buttons'] = array();
if ($context['can_post'])
$context['calendar_buttons']['post_event'] = array('text' => 'calendar_post_event', 'image' => 'calendarpe.png', 'url' => $scripturl . '?action=calendar;sa=post;month=' . $context['current_month'] . ';year=' . $context['current_year'] . ';' . $context['session_var'] . '=' . $context['session_id']);
call_integration_hook('integrate_calendar_buttons');
}
function CalendarPost()
{
global $context, $txt, $user_info, $sourcedir, $scripturl;
global $modSettings, $topic, $smcFunc;
isAllowedTo('calendar_post');
require_once($sourcedir . '/Subs-Calendar.php');
require_once($sourcedir . '/Subs.php');
if (isset($_REQUEST['eventid']))
$_REQUEST['eventid'] = (int) $_REQUEST['eventid'];
$time_string = strtr(get_date_or_time_format('time'), array(
'%I' => '%l',
'%H' => '%k',
'%S' => '',
'%r' => '%l:%M %p',
'%R' => '%k:%M',
'%T' => '%l:%M',
));
if (isset($_POST[$context['session_var']], $_REQUEST['eventid']))
{
checkSession();
if (!isset($_POST['link_to_board']))
validateEventPost();
if ($_REQUEST['eventid'] > 0 && !allowedTo('calendar_edit_any'))
isAllowedTo('calendar_edit_' . (!empty($user_info['id']) && getEventPoster($_REQUEST['eventid']) == $user_info['id'] ? 'own' : 'any'));
if (isset($_POST['link_to_board']) || empty($modSettings['cal_allow_unlinked']))
{
$_REQUEST['calendar'] = 1;
require_once($sourcedir . '/Post.php');
return Post();
}
elseif ($_REQUEST['eventid'] == -1)
{
$eventOptions = array(
'board' => 0,
'topic' => 0,
'title' => $smcFunc['substr']($_REQUEST['evtitle'], 0, 100),
'location' => $smcFunc['substr']($_REQUEST['event_location'], 0, 255),
'member' => $user_info['id'],
);
insertEvent($eventOptions);
}
elseif (isset($_REQUEST['deleteevent']))
removeEvent($_REQUEST['eventid']);
else
{
$eventOptions = array(
'title' => $smcFunc['substr']($_REQUEST['evtitle'], 0, 100),
'location' => $smcFunc['substr']($_REQUEST['event_location'], 0, 255),
);
modifyEvent($_REQUEST['eventid'], $eventOptions);
}
updateSettings(array(
'calendar_updated' => time(),
));
if (isset($_POST['start_date']))
{
$d = date_parse($_POST['start_date']);
$year = $d['year'];
$month = $d['month'];
$day = $d['day'];
}
elseif (isset($_POST['start_datetime']))
{
$d = date_parse($_POST['start_datetime']);
$year = $d['year'];
$month = $d['month'];
$day = $d['day'];
}
else
{
$today = getdate();
$year = isset($_POST['year']) ? $_POST['year'] : $today['year'];
$month = isset($_POST['month']) ? $_POST['month'] : $today['mon'];
$day = isset($_POST['day']) ? $_POST['day'] : $today['mday'];
}
redirectexit($scripturl . '?action=calendar;month=' . $month . ';year=' . $year . ';day=' . $day);
}
if (empty($modSettings['cal_allow_unlinked']) && empty($_REQUEST['eventid']))
{
$_REQUEST['calendar'] = 1;
require_once($sourcedir . '/Post.php');
return Post();
}
if (!isset($_REQUEST['eventid']))
{
$context['event'] = array(
'boards' => array(),
'board' => 0,
'new' => 1,
'eventid' => -1,
'title' => '',
'location' => '',
);
$eventDatetimes = getNewEventDatetimes();
$context['event'] = array_merge($context['event'], $eventDatetimes);
$context['event']['last_day'] = (int) strftime('%d', mktime(0, 0, 0, $context['event']['month'] == 12 ? 1 : $context['event']['month'] + 1, 0, $context['event']['month'] == 12 ? $context['event']['year'] + 1 : $context['event']['year']));
}
else
{
$context['event'] = getEventProperties($_REQUEST['eventid']);
if ($context['event'] === false)
fatal_lang_error('no_access', false);
if (!empty($context['event']['topic']['id']) && !empty($context['event']['topic']['first_msg']))
{
$topic = $context['event']['topic']['id'];
loadBoard();
}
if ($context['event']['member'] != $user_info['id'])
isAllowedTo('calendar_edit_any');
elseif (!allowedTo('calendar_edit_any'))
isAllowedTo('calendar_edit_own');
}
if ($context['event']['allday'] == true)
{
$context['event']['tz'] = getUserTimezone();
$context['event']['start_time'] = timeformat(time(), $time_string);
$context['event']['end_time'] = timeformat(time() + 3600, $time_string);
}
else
{
$context['event']['start_time'] = $context['event']['start_time_orig'];
$context['event']['end_time'] = $context['event']['end_time_orig'];
}
$context['all_timezones'] = smf_list_timezones($context['event']['start_date']);
if (!isset($context['all_timezones'][$context['event']['tz']]))
{
$later = strtotime('@' . $context['event']['start_timestamp'] . ' + 1 year');
$tzinfo = timezone_transitions_get(timezone_open($context['event']['tz']), $context['event']['start_timestamp'], $later);
$found = false;
foreach ($context['all_timezones'] as $possible_tzid => $dummy)
{
$possible_tzinfo = timezone_transitions_get(timezone_open($possible_tzid), $context['event']['start_timestamp'], $later);
if ($tzinfo === $possible_tzinfo)
{
$context['event']['tz'] = $possible_tzid;
$found = true;
break;
}
}
if (!$found)
{
$d = date_create($context['event']['start_datetime'] . ' ' . $context['event']['tz']);
$context['all_timezones'] = array($context['event']['tz'] => '[UTC' . date_format($d, 'P') . '] - ' . $context['event']['tz']) + $context['all_timezones'];
}
}
$boards = boardsAllowedTo('post_new');
if (empty($boards))
{
$context['event']['categories'] = array();
}
else
{
require_once($sourcedir . '/Subs-MessageIndex.php');
$boardListOptions = array(
'included_boards' => in_array(0, $boards) ? null : $boards,
'not_redirection' => true,
'use_permissions' => true,
'selected_board' => $modSettings['cal_defaultboard'],
);
$context['event']['categories'] = getBoardList($boardListOptions);
}
loadTemplate('Calendar');
$context['sub_template'] = 'event_post';
$context['page_title'] = isset($_REQUEST['eventid']) ? $txt['calendar_edit'] : $txt['calendar_post_event'];
$context['linktree'][] = array(
'name' => $context['page_title'],
);
loadDatePicker('#event_time_input .date_input');
loadTimePicker('#event_time_input .time_input', $time_string);
loadDatePair('#event_time_input', 'date_input', 'time_input');
addInlineJavaScript('
$("#allday").click(function(){
$("#start_time").attr("disabled", this.checked);
$("#end_time").attr("disabled", this.checked);
$("#tz").attr("disabled", this.checked);
});', true);
}
function iCalDownload()
{
global $smcFunc, $sourcedir, $modSettings, $webmaster_email, $mbname;
if (empty($modSettings['cal_export']))
fatal_lang_error('calendar_export_off', false);
if (!isset($_REQUEST['eventid']))
fatal_lang_error('no_access', false);
require_once($sourcedir . '/Subs-Calendar.php');
$event = getEventProperties($_REQUEST['eventid']);
if ($event === false)
fatal_lang_error('no_access', false);
$title = str_split($event['title'], 30);
foreach ($title as $id => $line)
{
if ($id != 0)
$title[$id] = ' ' . $title[$id];
$title[$id] .= "\n";
}
$datestamp = date('Ymd\THis\Z', time());
$start_date = date_create($event['start_date'] . (isset($event['start_time']) ? ' ' . $event['start_time'] : '') . (isset($event['tz']) ? ' ' . $event['tz'] : ''));
$end_date = date_create($event['end_date'] . (isset($event['end_time']) ? ' ' . $event['end_time'] : '') . (isset($event['tz']) ? ' ' . $event['tz'] : ''));
if (!empty($event['start_time']))
{
$datestart = date_format($start_date, 'Ymd\THis');
$dateend = date_format($end_date, 'Ymd\THis');
}
else
{
$datestart = date_format($start_date, 'Ymd');
date_add($end_date, date_interval_create_from_date_string('1 day'));
$dateend = date_format($end_date, 'Ymd');
}
$filecontents = '';
$filecontents .= 'BEGIN:VCALENDAR' . "\n";
$filecontents .= 'METHOD:PUBLISH' . "\n";
$filecontents .= 'PRODID:-//SimpleMachines//' . SMF_FULL_VERSION . '//EN' . "\n";
$filecontents .= 'VERSION:2.0' . "\n";
$filecontents .= 'BEGIN:VEVENT' . "\n";
$filecontents .= 'ORGANIZER;CN="' . $event['realname'] . '":MAILTO:' . $webmaster_email . "\n";
$filecontents .= 'DTSTAMP:' . $datestamp . "\n";
$filecontents .= 'DTSTART' . (!empty($event['start_time']) ? ';TZID=' . $event['tz'] : ';VALUE=DATE') . ':' . $datestart . "\n";
if ($event['start_iso_gmdate'] != $event['end_iso_gmdate'])
$filecontents .= 'DTEND' . (!empty($event['end_time']) ? ';TZID=' . $event['tz'] : ';VALUE=DATE') . ':' . $dateend . "\n";
if ($event['sequence'] > 0)
$filecontents .= 'SEQUENCE:' . $event['sequence'] . "\n";
if (!empty($event['location']))
$filecontents .= 'LOCATION:' . str_replace(',', '\,', $event['location']) . "\n";
$filecontents .= 'SUMMARY:' . implode('', $title);
$filecontents .= 'UID:' . $event['eventid'] . '@' . str_replace(' ', '-', $mbname) . "\n";
$filecontents .= 'END:VEVENT' . "\n";
$filecontents .= 'END:VCALENDAR';
ob_end_clean();
if (!empty($modSettings['enableCompressedOutput']))
@ob_start('ob_gzhandler');
else
ob_start();
header('pragma: ');
header('cache-control: no-cache');
if (!isBrowser('gecko'))
header('content-transfer-encoding: binary');
header('expires: ' . gmdate('D, d M Y H:i:s', time() + 525600 * 60) . ' GMT');
header('last-modified: ' . gmdate('D, d M Y H:i:s', time()) . 'GMT');
header('accept-ranges: bytes');
header('connection: close');
header('content-disposition: attachment; filename="' . $event['title'] . '.ics"');
if (empty($modSettings['enableCompressedOutput']))
header('content-length: ' . $smcFunc['strlen']($filecontents));
header('content-type: text/calendar');
echo $filecontents;
obExit(false);
}
function clock()
{
global $smcFunc, $settings, $context, $scripturl;
$context['onimg'] = $settings['images_url'] . '/bbc/bbc_hoverbg.png';
$context['offimg'] = $settings['images_url'] . '/bbc/bbc_bg.png';
$context['page_title'] = 'Anyone know what time it is?';
$context['linktree'][] = array(
'url' => $scripturl . '?action=clock',
'name' => 'Clock',
);
$context['robot_no_index'] = true;
$omfg = isset($_REQUEST['omfg']);
$bcd = !isset($_REQUEST['rb']) && !isset($_REQUEST['omfg']) && !isset($_REQUEST['time']);
loadTemplate('Calendar');
if ($bcd)
{
$context['sub_template'] = 'bcd';
$context['linktree'][] = array('url' => $scripturl . '?action=clock;bcd', 'name' => 'BCD');
$context['clockicons'] = $smcFunc['json_decode'](base64_decode('eyJoMSI6WzIsMV0sImgyIjpbOCw0LDIsMV0sIm0xIjpbNCwyLDFdLCJtMiI6WzgsNCwyLDFdLCJzMSI6WzQsMiwxXSwiczIiOls4LDQsMiwxXX0='), true);
}
elseif (!$omfg && !isset($_REQUEST['time']))
{
$context['sub_template'] = 'hms';
$context['linktree'][] = array('url' => $scripturl . '?action=clock', 'name' => 'Binary');
$context['clockicons'] = $smcFunc['json_decode'](base64_decode('eyJoIjpbMTYsOCw0LDIsMV0sIm0iOlszMiwxNiw4LDQsMiwxXSwicyI6WzMyLDE2LDgsNCwyLDFdfQ'), true);
}
elseif ($omfg)
{
$context['sub_template'] = 'omfg';
$context['linktree'][] = array('url' => $scripturl . '?action=clock;omfg', 'name' => 'OMFG');
$context['clockicons'] = $smcFunc['json_decode'](base64_decode('eyJ5ZWFyIjpbNjQsMzIsMTYsOCw0LDIsMV0sIm1vbnRoIjpbOCw0LDIsMV0sImRheSI6WzE2LDgsNCwyLDFdLCJob3VyIjpbMTYsOCw0LDIsMV0sIm1pbiI6WzMyLDE2LDgsNCwyLDFdLCJzZWMiOlszMiwxNiw4LDQsMiwxXX0='), true);
}
elseif (isset($_REQUEST['time']))
{
$context['sub_template'] = 'thetime';
$time = getdate($_REQUEST['time'] == 'now' ? time() : (int) $_REQUEST['time']);
$context['linktree'][] = array('url' => $scripturl . '?action=clock;time=' . $_REQUEST['time'], 'name' => 'Requested Time');
$context['clockicons'] = array(
'year' => array(
64 => false,
32 => false,
16 => false,
8 => false,
4 => false,
2 => false,
1 => false
),
'month' => array(
8 => false,
4 => false,
2 => false,
1 => false
),
'day' => array(
16 => false,
4 => false,
8 => false,
2 => false,
1 => false
),
'hour' => array(
32 => false,
16 => false,
8 => false,
4 => false,
2 => false,
1 => false
),
'min' => array(
32 => false,
16 => false,
8 => false,
4 => false,
2 => false,
1 => false
),
'sec' => array(
32 => false,
16 => false,
8 => false,
4 => false,
2 => false,
1 => false
),
);
foreach ($context['clockicons'] as $t => $vs)
foreach ($vs as $v => $dumb)
{
if ($$t >= $v)
{
$$t -= $v;
$context['clockicons'][$t][$v] = true;
}
}
}
}
?>