diff options
author | Sem <sembrestels@riseup.net> | 2012-08-10 12:18:59 +0200 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-08-10 12:18:59 +0200 |
commit | 6fd66b2c46ed6c3eb68fd0b05c1e02cd5b996824 (patch) | |
tree | bba9be7b9d037d4bb7b844f23103e6a268d273b3 /models | |
parent | 3ac2c8fd0cacc57b8080be5f7d381b8cf5524f2f (diff) | |
parent | 066365aa7ff1c407040a672e69d999ed8bd337f6 (diff) | |
download | elgg-6fd66b2c46ed6c3eb68fd0b05c1e02cd5b996824.tar.gz elgg-6fd66b2c46ed6c3eb68fd0b05c1e02cd5b996824.tar.bz2 |
Merge branch 'ical-icon' of github.com:sembrestels/Elgg-Event-Calendar
Diffstat (limited to 'models')
-rw-r--r-- | models/model.php | 33 |
1 files changed, 14 insertions, 19 deletions
diff --git a/models/model.php b/models/model.php index ba1393a8c..649d6027a 100644 --- a/models/model.php +++ b/models/model.php @@ -1481,29 +1481,24 @@ function event_calendar_get_page_content_list($page_type,$container_guid,$start_ elgg_push_context('groups'); elgg_set_page_owner_guid($container_guid); $user_guid = elgg_get_logged_in_user_guid(); - // TODO - ideally avoid the check on the event_poll plugin, perhaps by having event_poll remove the menu item if(event_calendar_can_add($container_guid)) { - if (!elgg_plugin_exists('event_poll')) { - elgg_register_menu_item('title', array( - 'name' => 'add', - 'href' => "event_calendar/add/".$container_guid, - 'text' => elgg_echo('event_calendar:add'), - 'class' => 'elgg-button elgg-button-action', - )); - } + elgg_register_menu_item('title', array( + 'name' => 'add', + 'href' => "event_calendar/add/".$container_guid, + 'text' => elgg_echo('event_calendar:add'), + 'class' => 'elgg-button elgg-button-action event-calendar-button-add', + )); } } else { elgg_push_breadcrumb(elgg_echo('item:object:event_calendar')); $user_guid = elgg_get_logged_in_user_guid(); if(event_calendar_can_add($container_guid)) { - if (!elgg_plugin_exists('event_poll')) { - elgg_register_menu_item('title', array( - 'name' => 'add', - 'href' => "event_calendar/add", - 'text' => elgg_echo('event_calendar:add'), - 'class' => 'elgg-button elgg-button-action', - )); - } + elgg_register_menu_item('title', array( + 'name' => 'add', + 'href' => "event_calendar/add", + 'text' => elgg_echo('event_calendar:add'), + 'class' => 'elgg-button elgg-button-action event-calendar-button-add', + )); } } @@ -1520,7 +1515,7 @@ function event_calendar_get_page_content_list($page_type,$container_guid,$start_ $menu_options = array( 'name' => 'ical', 'id' => 'event-calendar-ical-link', - 'text' => '<img src="'.elgg_get_site_url().'mod/event_calendar/images/ics.png" />', + 'text' => elgg_view_icon('calendar'), 'href' => $url, 'title' => elgg_echo('feed:ical'), 'priority' => 800, @@ -1884,7 +1879,7 @@ function event_calendar_get_page_content_view($event_guid,$light_box = FALSE) { } elgg_push_breadcrumb($event->title); - $content = elgg_view_entity($event, array('full_view' => true)); + $content = elgg_view_entity($event, array('full_view' => true,'light_box'=>$light_box)); //check to see if comment are on - TODO - add this feature to all events if ($event->comments_on != 'Off') { $content .= elgg_view_comments($event); |