]> git.mxchange.org Git - friendica.git/blobdiff - mod/events.php
extend checkbox template for customized attributes
[friendica.git] / mod / events.php
index 0fdec5cbe4c0f01d1e59bff4fc6418230a8ce6ab..eec970d0360d1016604fbe1848592e10d20fa59c 100644 (file)
@@ -5,6 +5,7 @@
  */
 
 use Friendica\App;
+use Friendica\Core\System;
 
 require_once 'include/bbcode.php';
 require_once 'include/datetime.php';
@@ -90,7 +91,7 @@ function events_post(App $a) {
        $type     = 'event';
 
        $action = ($event_id == '') ? 'new' : "event/" . $event_id;
-       $onerror_url = App::get_baseurl() . "/events/" . $action . "?summary=$summary&description=$desc&location=$location&start=$start_text&finish=$finish_text&adjust=$adjust&nofinish=$nofinish";
+       $onerror_url = System::baseUrl() . "/events/" . $action . "?summary=$summary&description=$desc&location=$location&start=$start_text&finish=$finish_text&adjust=$adjust&nofinish=$nofinish";
 
        if (strcmp($finish, $start) < 0 && !$nofinish) {
                notice(t('Event can not end before it has started.') . EOL);
@@ -190,7 +191,7 @@ function events_content(App $a) {
        }
 
        if ($a->argc == 1) {
-               $_SESSION['return_url'] = App::get_baseurl() . '/' . $a->cmd;
+               $_SESSION['return_url'] = System::baseUrl() . '/' . $a->cmd;
        }
 
        if (($a->argc > 2) && ($a->argv[1] === 'ignore') && intval($a->argv[2])) {
@@ -218,7 +219,7 @@ function events_content(App $a) {
 
        $htpl = get_markup_template('event_head.tpl');
        $a->page['htmlhead'] .= replace_macros($htpl, array(
-               '$baseurl' => App::get_baseurl(),
+               '$baseurl' => System::baseUrl(),
                '$module_url' => '/events',
                '$modparams' => 1,
                '$i18n' => $i18n,
@@ -226,7 +227,7 @@ function events_content(App $a) {
 
        $etpl = get_markup_template('event_end.tpl');
        $a->page['end'] .= replace_macros($etpl, array(
-               '$baseurl' => App::get_baseurl(),
+               '$baseurl' => System::baseUrl(),
        ));
 
        $o = '';
@@ -249,6 +250,10 @@ function events_content(App $a) {
                        $mode = 'drop';
                        $event_id = intval($a->argv[2]);
                }
+               if ($a->argc > 2 && $a->argv[1] == 'copy') {
+                       $mode = 'copy';
+                       $event_id = intval($a->argv[2]);
+               }
                if ($a->argv[1] === 'new') {
                        $mode = 'new';
                        $event_id = 0;
@@ -337,7 +342,7 @@ function events_content(App $a) {
                        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] = App::get_baseurl() . '/' . $a->cmd . '#link-' . $j;
+                                       $links[$j] = System::baseUrl() . '/' . $a->cmd . '#link-' . $j;
                                }
                        }
                }
@@ -372,13 +377,13 @@ function events_content(App $a) {
                }
 
                $o = replace_macros($tpl, array(
-                       '$baseurl'   => App::get_baseurl(),
+                       '$baseurl'   => System::baseUrl(),
                        '$tabs'      => $tabs,
                        '$title'     => t('Events'),
                        '$view'      => t('View'),
-                       '$new_event' => array(App::get_baseurl() . '/events/new', t('Create New Event'), '', ''),
-                       '$previous'  => array(App::get_baseurl() . '/events/$prevyear/$prevmonth', t('Previous'), '', ''),
-                       '$next'      => array(App::get_baseurl() . '/events/$nextyear/$nextmonth', t('Next'), '', ''),
+                       '$new_event' => array(System::baseUrl() . '/events/new', t('Create New Event'), '', ''),
+                       '$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,
@@ -398,7 +403,7 @@ function events_content(App $a) {
                return $o;
        }
 
-       if ($mode === 'edit' && $event_id) {
+       if (($mode === 'edit' || $mode === 'copy') && $event_id) {
                $r = q("SELECT * FROM `event` WHERE `id` = %d AND `uid` = %d LIMIT 1",
                        intval($event_id),
                        intval(local_user())
@@ -409,7 +414,7 @@ function events_content(App $a) {
        }
 
        // Passed parameters overrides anything found in the DB
-       if ($mode === 'edit' || $mode === 'new') {
+       if ($mode === 'edit' || $mode === 'new' || $mode === 'copy') {
                if (!x($orig_event)) {$orig_event = array();}
                // In case of an error the browser is redirected back here, with these parameters filled in with the previous values
                if (x($_REQUEST, 'nofinish'))    {$orig_event['nofinish']    = $_REQUEST['nofinish'];}
@@ -437,7 +442,7 @@ function events_content(App $a) {
                }
 
                if ($cid || ($mode !== 'new')) {
-                       $sh_checked .= ' disabled="disabled" ';
+                       $sh_disabled = 'disabled="disabled"';
                }
 
                $sdt = ((x($orig_event)) ? $orig_event['start'] : 'now');
@@ -469,14 +474,21 @@ function events_content(App $a) {
 
                require_once 'include/acl_selectors.php' ;
 
-               if ($mode === 'new') {
+               if ($mode === 'new' || $mode === 'copy') {
                        $acl = (($cid) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $a->user)));
                }
 
+               // If we copy an old event, we need to remove the ID and URI
+               // from the orgiginal event.
+               if ($mode === 'copy') {
+                       $eid = 0;
+                       $uri = '';
+               }
+
                $tpl = get_markup_template('event_form.tpl');
 
                $o .= replace_macros($tpl,array(
-                       '$post' => App::get_baseurl() . '/events',
+                       '$post' => System::baseUrl() . '/events',
                        '$eid' => $eid,
                        '$cid' => $cid,
                        '$uri' => $uri,
@@ -499,7 +511,7 @@ function events_content(App $a) {
                        '$t_orig' => $t_orig,
                        '$summary' => array('summary', t('Title:'), $t_orig, '', '*'),
                        '$sh_text' => t('Share this event'),
-                       '$share' => array('share', t('Share this event'), $sh_checked, ''),
+                       '$share' => array('share', t('Share this event'), $sh_checked, '', $sh_disabled),
                        '$sh_checked' => $sh_checked,
                        '$nofinish' => array('nofinish', t('Finish date/time is not known or not relevant'), $n_checked),
                        '$adjust' => array('adjust', t('Adjust for viewer timezone'), $a_checked),
@@ -533,6 +545,6 @@ function events_content(App $a) {
                        info(t('Event removed') . EOL);
                }
 
-               goaway(App::get_baseurl() . '/events');
+               goaway(System::baseUrl() . '/events');
        }
 }