diff options
Diffstat (limited to 'views/default/event_calendar/entities')
-rw-r--r-- | views/default/event_calendar/entities/entity_list.php | 66 | ||||
-rw-r--r-- | views/default/event_calendar/entities/gallery.php | 44 | ||||
-rw-r--r-- | views/default/event_calendar/entities/gallery_item.php | 63 |
3 files changed, 0 insertions, 173 deletions
diff --git a/views/default/event_calendar/entities/entity_list.php b/views/default/event_calendar/entities/entity_list.php deleted file mode 100644 index 84c2c0b7d..000000000 --- a/views/default/event_calendar/entities/entity_list.php +++ /dev/null @@ -1,66 +0,0 @@ -<?php -/** - * View a list of entities - * - * @package Elgg - * @author Curverider Ltd <info@elgg.com> - * @link http://elgg.com/ - * - */ - -$context = $vars['context']; -$offset = $vars['offset']; -$entities = $vars['entities']; -$limit = $vars['limit']; -$count = $vars['count']; -$baseurl = $vars['baseurl']; -$context = $vars['context']; -$viewtype = $vars['viewtype']; -$pagination = $vars['pagination']; -$fullview = $vars['fullview']; - -$html = ""; -$nav = ""; - -if (isset($vars['viewtypetoggle'])) { - $viewtypetoggle = $vars['viewtypetoggle']; -} else { - $viewtypetoggle = true; -} - -if ($context == "search" && $count > 0 && $viewtypetoggle) { - $nav .= elgg_view('navigation/viewtype', array( - 'baseurl' => $baseurl, - 'offset' => $offset, - 'count' => $count, - 'viewtype' => $viewtype, - )); -} - -if ($pagination) { - $nav .= elgg_view('navigation/pagination',array( - 'baseurl' => $baseurl, - 'offset' => $offset, - 'count' => $count, - 'limit' => $limit, - )); -} - -$html .= $nav; -if ($viewtype == 'list') { - if (is_array($entities) && sizeof($entities) > 0) { - foreach($entities as $entity) { - $html .= elgg_view_entity($entity, $fullview); - } - } -} else { - if (is_array($entities) && sizeof($entities) > 0) { - $html .= elgg_view('event_calendar/entities/gallery', array('entities' => $entities)); - } -} - -if ($count) { - $html .= $nav; -} - -echo $html;
\ No newline at end of file diff --git a/views/default/event_calendar/entities/gallery.php b/views/default/event_calendar/entities/gallery.php deleted file mode 100644 index a12dfa84a..000000000 --- a/views/default/event_calendar/entities/gallery.php +++ /dev/null @@ -1,44 +0,0 @@ -<?php -/** - * Elgg gallery view - * - * @package Elgg - * @subpackage Core - * @author Curverider Ltd - * @link http://elgg.org/ - */ - -$entities = $vars['entities']; -if (is_array($entities) && sizeof($entities) > 0) { - -?> - -<table class="entity_gallery"> - -<?php - - $col = 0; - foreach($entities as $entity) { - if ($col == 0) { - - echo "<tr>"; - - } - echo "<td class=\"entity_gallery_item\">"; - echo elgg_view('event_calendar/entities/gallery_item',array('entity'=>$entity)); - echo "</td>"; - $col++; - if ($col > 3) { - echo "</tr>"; - $col = 0; - } - } - if ($col > 0) echo "</tr>"; - -?> - -</table> - -<?php - -}
\ No newline at end of file diff --git a/views/default/event_calendar/entities/gallery_item.php b/views/default/event_calendar/entities/gallery_item.php deleted file mode 100644 index 9fc1edeca..000000000 --- a/views/default/event_calendar/entities/gallery_item.php +++ /dev/null @@ -1,63 +0,0 @@ -<?php - - /** - * Elgg user display (gallery) - * - * @package ElggProfile - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 - * @author Curverider Ltd <info@elgg.com> - * @copyright Curverider Ltd 2008-2010 - * @link http://elgg.com/ - * - * @uses $vars['entity'] The user entity - */ - -$icon = elgg_view( - "profile/icon", array( - 'entity' => $vars['entity'], - 'size' => 'medium', - ) - ); - -$banned = $vars['entity']->isBanned(); - -$rel = ""; -if (elgg_get_page_owner_guid() == $vars['entity']->guid) - $rel = 'me'; -else if (check_entity_relationship(elgg_get_page_owner_guid(), 'friend', $vars['entity']->guid)) - $rel = 'friend'; - -if (!$banned) - $info .= "<p><b><a href=\"" . $vars['entity']->getUrl() . "\" rel=\"$rel\">" . $vars['entity']->name . "</a></b></p>"; -else - $info .= "<p><b><strike>" . $vars['entity']->name . "</b></strike><br />".elgg_echo('profile:banned')."</p>"; - -// TODO: look into a way to pass $authorised and $event_id in $vars -$authorised = FALSE; -$event_id = get_input('event_id', 0); -if ($event_id) { - if(isadminloggedin()) { - $authorised = TRUE; - } else { - // load the event from the database - $event = get_entity($event_id); - $user_id = elgg_get_logged_in_user_guid(); - if ($event && ($event->owner_guid == $user_id)) { - $authorised = TRUE; - } - } -} - -if ($authorised) { - $link = '<p><a href="#" '; - $link .= 'onclick="javascript:event_calendar_personal_toggle('.$event_id.','.$vars['entity']->guid.'); return false;" '; - $link .= ' >'; - $link .= '<span id="event_calendar_user_data_'.$vars['entity']->guid.'">'.elgg_echo('event_calendar:remove_from_the_calendar').'</span>'; - $link .= '</a></p>'; - $info .= $link; -} - -// echo elgg_view_image_block($icon, $info); -echo elgg_view('search/gallery_listing',array('icon' => $icon, 'info' => $info)); - -?>
\ No newline at end of file |