X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fcal.php;h=db5b00879e679f78b2f821c3c85f4bd2ad7bd1c5;hb=0dfa57948f152a90a4d8093419a2ea5ced07349c;hp=ba43393284767fe744c46c3598b034dd1bc5d1ca;hpb=d4c3dcf2fccefcb2c79881be09fd3b1c73dc611a;p=friendica.git diff --git a/mod/cal.php b/mod/cal.php index ba43393284..db5b00879e 100644 --- a/mod/cal.php +++ b/mod/cal.php @@ -6,14 +6,19 @@ * of the profile owner */ +use Friendica\App; +use Friendica\Core\Config; +use Friendica\Core\PConfig; +use Friendica\Core\System; + require_once('include/event.php'); require_once('include/redir.php'); -function cal_init(&$a) { +function cal_init(App $a) { if($a->argc > 1) auto_redir($a, $a->argv[1]); - if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) { + if((Config::get('system','block_public')) && (! local_user()) && (! remote_user())) { return; } @@ -64,15 +69,11 @@ function cal_init(&$a) { return; } -function cal_content(&$a) { +function cal_content(App $a) { nav_set_selected('events'); - $editselect = 'none'; - if( feature_enabled(local_user(), 'richtext') ) - $editselect = 'textareas'; - // First day of the week (0 = Sunday) - $firstDay = get_pconfig(local_user(),'system','first_day_of_week'); + $firstDay = PConfig::get(local_user(),'system','first_day_of_week'); if ($firstDay === false) $firstDay=0; // get the translation strings for the callendar @@ -80,17 +81,15 @@ function cal_content(&$a) { $htpl = get_markup_template('event_head.tpl'); $a->page['htmlhead'] .= replace_macros($htpl,array( - '$baseurl' => $a->get_baseurl(), + '$baseurl' => System::baseUrl(), '$module_url' => '/cal/' . $a->data['user']['nickname'], '$modparams' => 2, '$i18n' => $i18n, - '$editselect' => $editselect )); $etpl = get_markup_template('event_end.tpl'); $a->page['end'] .= replace_macros($etpl,array( - '$baseurl' => $a->get_baseurl(), - '$editselect' => $editselect + '$baseurl' => System::baseUrl(), )); $o =""; @@ -229,10 +228,11 @@ function cal_content(&$a) { if (dbm::is_result($r)) { $r = sort_by_date($r); - foreach($r as $rr) { + foreach ($r as $rr) { $j = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'j') : datetime_convert('UTC','UTC',$rr['start'],'j')); - if(! x($links,$j)) - $links[$j] = $a->get_baseurl() . '/' . $a->cmd . '#link-' . $j; + if (! x($links,$j)) { + $links[$j] = System::baseUrl() . '/' . $a->cmd . '#link-' . $j; + } } } @@ -252,7 +252,7 @@ function cal_content(&$a) { if (x($_GET,'id')){ $tpl = get_markup_template("event.tpl"); } else { -// if (get_config('experimentals','new_calendar')==1){ +// if (Config::get('experimentals','new_calendar')==1){ $tpl = get_markup_template("events_js.tpl"); // } else { // $tpl = get_markup_template("events.tpl"); @@ -270,12 +270,12 @@ function cal_content(&$a) { } $o = replace_macros($tpl, array( - '$baseurl' => $a->get_baseurl(), + '$baseurl' => System::baseUrl(), '$tabs' => $tabs, '$title' => t('Events'), '$view' => t('View'), - '$previus' => array($a->get_baseurl()."/events/$prevyear/$prevmonth",t('Previous'),'',''), - '$next' => array($a->get_baseurl()."/events/$nextyear/$nextmonth",t('Next'),'',''), + '$previous' => array(System::baseUrl()."/events/$prevyear/$prevmonth", t('Previous'),'',''), + '$next' => array(System::baseUrl()."/events/$nextyear/$nextmonth", t('Next'),'',''), '$calendar' => cal($y,$m,$links, ' eventcal'), '$events' => $events,