diff options
Diffstat (limited to 'mod/riverdashboard')
24 files changed, 0 insertions, 1018 deletions
diff --git a/mod/riverdashboard/actions/add.php b/mod/riverdashboard/actions/add.php deleted file mode 100644 index fc98664ae..000000000 --- a/mod/riverdashboard/actions/add.php +++ /dev/null @@ -1,56 +0,0 @@ -<?php - - /** - * Elgg site message: add - * - * @package ElggSiteMessage - * @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.org/ - **/ - - // Make sure we're logged in and are admin (send us to the front page if not) - admin_gatekeeper(); - - // Get input data - $message = get_input('sitemessage'); - //$access = 1; //it is for all logged in users - - // Make sure the message isn't blank - if (empty($message)) { - register_error(elgg_echo("sitemessages:blank")); - forward("mod/riverdashboard/"); - - // Otherwise, save the message - } else { - - // Initialise a new ElggObject - $sitemessage = new ElggObject(); - // Tell the system it's a site wide message - $sitemessage->subtype = "sitemessage"; - // Set its owner to the current user - $sitemessage->owner_guid = $_SESSION['user']->getGUID(); - // For now, set its access to logged in users - $sitemessage->access_id = 1; // this is for all logged in users - // Set description appropriately - $sitemessage->title = ''; - $sitemessage->description = $message; - // Before we can set metadata, we need to save the message - if (!$sitemessage->save()) { - register_error(elgg_echo("sitemessage:error")); - forward("mod/riverdashboard/"); - } - // Success message - system_message(elgg_echo("sitemessages:posted")); - - // add to river - add_to_river('river/sitemessage/create','create',$_SESSION['user']->guid,$sitemessage->guid); - - // Forward to the activity page - forward("mod/riverdashboard/"); - - } - - -?> diff --git a/mod/riverdashboard/actions/delete.php b/mod/riverdashboard/actions/delete.php deleted file mode 100644 index db9196f01..000000000 --- a/mod/riverdashboard/actions/delete.php +++ /dev/null @@ -1,36 +0,0 @@ -<?php - - /** - * Elgg site message: delete - * - * @package ElggBlog - * @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.org/ - */ - - // Make sure we're logged in (send us to the front page if not) - gatekeeper(); - - // Get input data - $guid = (int) get_input('message'); - - // Make sure we actually have permission to edit - $message = get_entity($guid); - if ($message->getSubtype() == "sitemessage" && $message->canEdit()) { - - // Delete it! - $rowsaffected = $message->delete(); - if ($rowsaffected > 0) { - // Success message - system_message(elgg_echo("sitemessage:deleted")); - } else { - register_error(elgg_echo("sitemessage:notdeleted")); - } - // Forward to the river - forward("mod/riverdashboard/"); - - } - -?>
\ No newline at end of file diff --git a/mod/riverdashboard/endpoint/ping.php b/mod/riverdashboard/endpoint/ping.php deleted file mode 100644 index d41128e1f..000000000 --- a/mod/riverdashboard/endpoint/ping.php +++ /dev/null @@ -1,70 +0,0 @@ -<?php -/** - * Check for new activity. - * Outputs # of new activity items since $_GET['last_checked'] time - */ - -// Load Elgg engine will not include plugins -require_once(dirname(dirname(dirname(dirname(__FILE__)))) . "/engine/start.php"); - -// check for last checked time -if (!$seconds_passed = get_input('seconds_passed', 0)) { - echo ''; - exit; -} - -$last_reload = time() - $seconds_passed; - -//grab any new annotations -$annotations = count_annotations('', '', '', '', '', '', '', $last_reload); -if(!$annotations) - $annotations = 0; -//grab all new objects created -$entity_creation = elgg_get_entities(array( - 'count' => TRUE, - 'created_time_lower' => $last_reload, - 'wheres' => array('e.type != \'user\'') -)); -if(!$entity_creation) - $entity_creation = 0; -//grab any entities updated -$entity_update = elgg_get_entities(array( - 'count' => TRUE, - 'modified_time_lower' => $last_reload, - 'wheres' => array('e.type != \'user\'') -)); -if(!$entity_update) - $entity_update = 0; -//get any relationships, such as friending - this is not working quite right yet -//$relationship_action = elgg_get_entities_from_relationship(array('count' => TRUE)); -//if(!$relationship_action) -// $relationship_action = 0; - -//sum all totals -$all_activity = $annotations + $entity_creation + $entity_update; - -if ($all_activity > 0) { - $s = ($all_activity == 1) ? '' : 's'; - echo "<a href='' onClick=\"window.location.reload();\" class='update_link'>$all_activity update$s!</a>"; -?> - <script type="text/javascript"> - $(document).ready(function(){ - - var pageTitleSubstring; - var stringStartPosition = document.title.indexOf("]"); - - if (stringStartPosition == -1) { // we haven't already altered page title - pageTitleSubstring = document.title; - } else { // we previously prepended to page title, need to remove it first - pageTitleSubstring = document.title.substring( (stringStartPosition+2) ); - } - - document.title = "[<?php echo $all_activity; ?> update<?php echo $s; ?>] "+pageTitleSubstring; - }); - </script> - -<?php -} else { - echo ''; - exit; -} diff --git a/mod/riverdashboard/graphics/follow_icon.png b/mod/riverdashboard/graphics/follow_icon.png Binary files differdeleted file mode 100644 index 56fa8b1f5..000000000 --- a/mod/riverdashboard/graphics/follow_icon.png +++ /dev/null diff --git a/mod/riverdashboard/graphics/refresh.png b/mod/riverdashboard/graphics/refresh.png Binary files differdeleted file mode 100644 index 71aa8e5e2..000000000 --- a/mod/riverdashboard/graphics/refresh.png +++ /dev/null diff --git a/mod/riverdashboard/index.php b/mod/riverdashboard/index.php deleted file mode 100644 index e025850ea..000000000 --- a/mod/riverdashboard/index.php +++ /dev/null @@ -1,62 +0,0 @@ -<?php - -/** - * Elgg river dashboard plugin index page - */ - -require_once(dirname(dirname(dirname(__FILE__))) . '/engine/start.php'); - -gatekeeper(); - -$type = get_input('type'); -$subtype = get_input('subtype'); -$orient = get_input('display'); -if(!$orient) - $orient = 'all'; -$callback = get_input('callback'); - -if ($type == 'all') { - $type = ''; - $subtype = ''; -} - -$body = ''; - -switch($orient) { - case 'mine': - $subject_guid = $_SESSION['user']->guid; - $relationship_type = ''; - $title_wording = elgg_echo('river:mine'); - break; - case 'friends': $subject_guid = $_SESSION['user']->guid; - $relationship_type = 'friend'; - $title_wording = elgg_echo('river:friends'); - break; - default: $subject_guid = 0; - $relationship_type = ''; - $title_wording = elgg_echo('river:all'); - break; -} - - -$title = elgg_view_title($title_wording); - -$river = elgg_view_river_items($subject_guid, 0, $relationship_type, $type, $subtype, '', 20, 0, 0, true, false) . "</div>"; -// Replacing callback calls in the nav with something meaningless -$river = str_replace('callback=true','replaced=88,334',$river); - -$nav = elgg_view('riverdashboard/nav',array('type' => $type,'subtype' => $subtype,'orient' => $orient)); -if(isloggedin()){ - $sidebar = elgg_view("riverdashboard/menu",array('type' => $type,'subtype' => $subtype,'orient' => $orient)); - $sidebar .= elgg_view("riverdashboard/sidebar", array("object_type" => 'riverdashboard')); -}else{ - $sidebar = ''; -} -set_context('riverdashboard'); -if (empty($callback)) { - $body .= elgg_view('riverdashboard/container', array('body' => $nav . $river . elgg_view('riverdashboard/js'))); - page_draw($title_wording,elgg_view_layout('one_column_with_sidebar',$title . $body, $sidebar)); -} else { - header("Content-type: text/html; charset=UTF-8"); - echo $nav . $river . elgg_view('riverdashboard/js'); -}
\ No newline at end of file diff --git a/mod/riverdashboard/languages/en.php b/mod/riverdashboard/languages/en.php deleted file mode 100644 index 864a8d7a9..000000000 --- a/mod/riverdashboard/languages/en.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php -$english = array( - 'mine' => 'Mine', - 'filter' => 'Filter', - 'riverdashboard:useasdashboard' => "Replace the default dashboard with this activity river?", - 'activity' => 'Activity', - 'riverdashboard:recentmembers' => 'Recent members', - - /** - * Site messages - **/ - - 'sitemessages:announcements' => "Site announcements", - 'sitemessages:posted' => "Posted", - 'sitemessages:river:created' => "Site admin, %s,", - 'sitemessages:river:create' => "posted a new site wide message", - 'sitemessages:add' => "Add a site-wide message to the river page", - 'sitemessage:deleted' => "Site message deleted", - - 'river:widget:noactivity' => 'We could not find any activity.', - 'river:widget:title' => "Activity", - 'river:all' => "All activity", - 'river:mine' => "My activity", - 'river:friends' => "Friends' activity", - 'river:widget:description' => "Show your latest activity.", - 'river:widget:title:friends' => "Friends' activity", - 'river:widget:description:friends' => "Show what your friends are up to.", - 'river:widgets:friends' => "Friends", - 'river:widgets:mine' => "Mine", - 'river:friends' => "My friends' activity", - 'river:mine' => "My activity", - 'river:widget:label:displaynum' => "Number of entries to display:", - 'river:widget:type' => "Which river would you like to display? One that shows your activity or one that shows your friends activity?", - 'item:object:sitemessage' => "Site messages", - 'riverdashboard:avataricon' => "Would you like to use user avatars or icons on your site activity stream?", - 'option:icon' => 'Icons', - 'option:avatar' => 'Avatars', -); - -add_translation("en",$english);
\ No newline at end of file diff --git a/mod/riverdashboard/manifest.xml b/mod/riverdashboard/manifest.xml deleted file mode 100644 index a29af8a61..000000000 --- a/mod/riverdashboard/manifest.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?>
-<plugin_manifest>
- <field key="author" value="Curverider Ltd" />
- <field key="version" value="1.0" />
- <field key="description" value="Elgg river for use with v1.7 onward." />
- <field key="website" value="http://www.elgg.org/" />
- <field key="copyright" value="(C) Curverider 2010" />
- <field key="licence" value="GNU Public License version 2" />
-</plugin_manifest>
\ No newline at end of file diff --git a/mod/riverdashboard/start.php b/mod/riverdashboard/start.php deleted file mode 100644 index 1377afc37..000000000 --- a/mod/riverdashboard/start.php +++ /dev/null @@ -1,51 +0,0 @@ -<?php -/** - * Elgg river dashboard plugin - */ - -function riverdashboard_init() { - global $CONFIG; - // Register and optionally replace the dashboard - if (get_plugin_setting('useasdashboard', 'riverdashboard') == 'yes') { - register_page_handler('dashboard','riverdashboard_page_handler'); - } else { - // Activity main menu - add_menu(elgg_echo('activity'), $CONFIG->wwwroot . "mod/riverdashboard/"); - } - // Page handler - register_page_handler('riverdashboard','riverdashboard_page_handler'); - elgg_extend_view('css','riverdashboard/css'); -} - -/** - * Page handler for riverdash - * - * @param unknown_type $page - */ -function riverdashboard_page_handler($page){ - global $CONFIG; - include(dirname(__FILE__) . "/index.php"); - return true; -} - -function riverdashboard_dashboard() { - include(dirname(__FILE__) . '/index.php'); -} - -/** - * For users to make a comment on a river item - * - * @param ElggEntity $entity The entity to comment on - * @return string|false The HTML (etc) for the comment form, or false on failure - */ -function elgg_make_river_comment($entity){ - if (!($entity instanceof ElggEntity)) { - return false; - } else { - //display the comment form - $comments = elgg_view('riverdashboard/rivercomment',array('entity' => $entity)); - return $comments; - } -} - -register_elgg_event_handler('init','system','riverdashboard_init'); diff --git a/mod/riverdashboard/views/default/river/dashboard.php b/mod/riverdashboard/views/default/river/dashboard.php deleted file mode 100644 index 5fe7c35d3..000000000 --- a/mod/riverdashboard/views/default/river/dashboard.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php -/** - * Elgg river for dashboard. - */ - -/// Extract the river -$river = $vars['river']; -?> -<div id="river"> -<?php -if (($river) && (count($river)>0)) { - foreach ($river as $r) { - echo $r; - } -} else { - echo elgg_echo('river:widget:noactivity'); -} -?> -</div><!-- /river -->
\ No newline at end of file diff --git a/mod/riverdashboard/views/default/river/item/list.php b/mod/riverdashboard/views/default/river/item/list.php deleted file mode 100644 index 0c0d7a4db..000000000 --- a/mod/riverdashboard/views/default/river/item/list.php +++ /dev/null @@ -1,53 +0,0 @@ -<?php - if (isset($vars['items']) && is_array($vars['items'])) { - - $i = 0; - if (!empty($vars['items'])) { - foreach($vars['items'] as $item) { - echo elgg_view_river_item($item); - $i++; - if ($i >= $vars['limit']) { - break; - } - } - } - } - - if ($vars['pagination'] !== false) { - $baseurl = $_SERVER['REQUEST_URI']; - $baseurl = $baseurl = preg_replace('/[\&\?]offset\=[0-9]*/',"",$baseurl); - - $nav = ''; - - if (sizeof($vars['items']) > $vars['limit']) { - $newoffset = $vars['offset'] + $vars['limit']; - $urladdition = 'offset='.$newoffset; - if (substr_count($baseurl,'?')) { - $nexturl = $baseurl . '&' . $urladdition; - } else { - $nexturl=$baseurl . '?' . $urladdition; - } - - $nav .= '<a class="pagination_previous" href="'.$nexturl.'">« ' . elgg_echo('previous') . '</a> '; - } - - if ($vars['offset'] > 0) { - $newoffset = $vars['offset'] - $vars['limit']; - if ($newoffset < 0) { - $newoffset = 0; - } - $urladdition = 'offset='.$newoffset; - if (substr_count($baseurl,'?')) { - $prevurl=$baseurl . '&' . $urladdition; - } else { - $prevurl=$baseurl . '?' . $urladdition; - } - - $nav .= '<a class="pagination_next" href="'.$prevurl.'">' . elgg_echo('next') . ' »</a> '; - } - - if (!empty($nav)) { - echo '<div class="pagination clearfloat">'.$nav.'</div>'; - } - } -?>
\ No newline at end of file diff --git a/mod/riverdashboard/views/default/river/item/wrapper.php b/mod/riverdashboard/views/default/river/item/wrapper.php deleted file mode 100644 index 16f94e185..000000000 --- a/mod/riverdashboard/views/default/river/item/wrapper.php +++ /dev/null @@ -1,132 +0,0 @@ -<?php -/** - * Elgg river item wrapper. - * Wraps all river items. - */ - -//set required variables -$object = get_entity($vars['item']->object_guid); -//get object url -$object_url = $object->getURL(); -$numoflikes = elgg_count_likes($object); - -//user -//if displaying on the profile get the object owner, else the subject_guid -if(get_context() == 'profile' && $object->getSubtype() == 'thewire') - $user = get_entity($object->owner_guid); -else - $user = get_entity($vars['item']->subject_guid); - -//count comment annotations -$comment_count = count_annotations($vars['item']->object_guid, $vars['item']->type, $vars['item']->subtype, $annotation_comment); - -//get last three comments display -$get_comments = get_annotations($vars['item']->object_guid, "", "", 'generic_comment', "", "", 3, 0, "desc"); - -if($get_comments){ - //reverse the array so we can display comments in the right order - $get_comments = array_reverse($get_comments); -} - -//minus 3 off the comment total as we display 3 by default -if($comment_count < 3) - $num_comments = 0; -else - $num_comments = $comment_count - 3; -?> -<div class="river_item"> - <span class="river_item_useravatar"> - <?php echo elgg_view("profile/icon",array('entity' => $user, 'size' => 'small')); ?> - </span> - <div class="river_item_contents clearfloat"> - <?php - // body contents, generated by the river view in each plugin - echo $vars['body']; - - //display latest 3 comments if there are any - if($get_comments){ - $counter = 0; - //$background = ""; - - echo "<div class='river_comments_tabs clearfloat'>"; - - if($comment_count <= 3) { - echo "<a class='river_more_comments show_comments_button link'>Comments</a>"; - } - - //display 'more comments' if there are any - if($num_comments != 0){ - echo "<a class='river_more_comments show_comments_button link'>Comments (+{$num_comments} more)</a>"; - } - - if($numoflikes != 0){ - echo elgg_view('likes/forms/display', array('entity' => $object)); - } - echo "</div>"; // close river_comments_tabs - - echo "<div class='river_comments'>"; - - if($numoflikes != 0){ - //show the users who liked the object - echo "<div class='likes_list hidden'>"; - echo list_annotations($object->getGUID(), 'likes', 99); - echo "</div>"; - } - - foreach($get_comments as $gc){ - //get the comment owner - $comment_owner = get_user($gc->owner_guid); - //get the comment owner's profile url - $comment_owner_url = $comment_owner->getURL(); - // color-code each of the 3 comments - if( ($counter == 2 && $comment_count >= 4) || ($counter == 1 && $comment_count == 2) || ($counter == 0 && $comment_count == 1) || ($counter == 2 && $comment_count == 3) ) - $alt = 'latest'; - else if( ($counter == 1 && $comment_count >= 4) || ($counter == 0 && $comment_count == 2) || ($counter == 1 && $comment_count == 3) ) - $alt = 'penultimate'; - - //display comment - echo "<div class='river_comment {$alt} clearfloat'>"; - echo "<span class='river_comment_owner_icon'>"; - echo elgg_view("profile/icon",array('entity' => $comment_owner, 'size' => 'tiny')); - echo "</span>"; - //truncate comment to 150 characters - if(strlen($gc->value) > 150) { - $gc->value = substr($gc->value, 0, strpos($gc->value, ' ', 150)) . "…"; - } - $contents = strip_tags($gc->value); - echo "<div class='river_comment_contents'>"; - echo "<a href=\"{$comment_owner_url}\">" . $comment_owner->name . "</a> " . parse_urls($contents); - echo "<span class='entity_subtext'>" . friendly_time($gc->time_created) . "</span>"; - echo "</div></div>"; - $counter++; - } - echo elgg_make_river_comment($object); - echo "</div>"; // close river_comments - } else { - // tab bar nav - for users that liked object - echo "<div class='river_comments_tabs clearfloat'>"; - $numoflikes = elgg_count_likes($object); - if($numoflikes != 0){ - echo elgg_view('likes/forms/display', array('entity' => $object)); - } - echo "</div>"; // close river_comments_tabs - - echo "<div class='river_comments'>"; - - if($numoflikes != 0){ - //show the users who liked the object - echo "<div class='likes_list hidden'>"; - echo list_annotations($object->getGUID(), 'likes', 99); - echo "</div>"; - } - - // if there are no comments to display - // and this is not a user or a group discussion entry - include the inline comment form - if($vars['item']->type != 'user' && $vars['item']->subtype != 'groupforumtopic') { - echo elgg_make_river_comment($object); - } - echo "</div>"; - } -echo "</div>"; // close river_item_contents -?> -</div>
\ No newline at end of file diff --git a/mod/riverdashboard/views/default/river/relationship/friend/create.php b/mod/riverdashboard/views/default/river/relationship/friend/create.php deleted file mode 100644 index 916efd407..000000000 --- a/mod/riverdashboard/views/default/river/relationship/friend/create.php +++ /dev/null @@ -1,36 +0,0 @@ -<?php -/** - * Elgg relationship create event. - * Display something in the river when a relationship is created. - */ - -$statement = $vars['statement']; - -$performed_by = $statement->getSubject(); -$event = $statement->getEvent(); -$object = $statement->getObject(); - -if (is_array($object)) { - switch ($object['relationship']) { - // Friending - case 'friend' : - case 'friends' : // 'friends' shouldn't be used, but just incase :) - - // Get second object - $userb = $object['object']; - - // Only users can be friends - if (($performed_by instanceof ElggUser) && ($userb instanceof ElggUser)) { - // User A - echo "<a href=\"{$performed_by->getURL()}\">{$performed_by->name}</a> "; - - // Verb - echo elgg_echo('river:relationship:friend'); - - // user B - echo " <a href=\"{$userb->getURL()}\">{$userb->name}</a>"; - } - - break; - } -}
\ No newline at end of file diff --git a/mod/riverdashboard/views/default/riverdashboard/container.php b/mod/riverdashboard/views/default/riverdashboard/container.php deleted file mode 100644 index 67e277e99..000000000 --- a/mod/riverdashboard/views/default/riverdashboard/container.php +++ /dev/null @@ -1,52 +0,0 @@ -<?php echo $vars['body']; ?> - -<script type="text/JavaScript"> -$(document).ready(function(){ - var updates = new thewireUpdateChecker(10000); - updates.start(); -}); - -// check for updates on the wire. -function thewireUpdateChecker(interval) { - this.intervalID = null; - this.interval = interval; - this.url = '<?php echo $vars['url']; ?>mod/riverdashboard/endpoint/ping.php'; - this.seconds_passed = 0; - - this.start = function() { - // needed to complete closure scope. - var self = this; - - this.intervalID = setInterval(function() { self.checkUpdates(); }, this.interval); - } - - this.checkUpdates = function() { - this.seconds_passed += this.interval / 1000; - // more closure fun - var self = this; - $.ajax({ - 'type': 'GET', - 'url': this.url, - 'data': {'seconds_passed': this.seconds_passed}, - 'success': function(data) { - if (data) { - $('#riverdashboard_updates').html(data).slideDown(); - // could crank down the interval here. - // if we change the message to simply "New Posts!" - // we could stop the polling altogether. - } - } - }) - } - - this.stop = function() { - clearInterval(this.interval); - } - - this.changeInterval = function(interval) { - this.stop(); - this.interval = interval; - this.start(); - } -} -</script> diff --git a/mod/riverdashboard/views/default/riverdashboard/css.php b/mod/riverdashboard/views/default/riverdashboard/css.php deleted file mode 100644 index 8c2112ca1..000000000 --- a/mod/riverdashboard/views/default/riverdashboard/css.php +++ /dev/null @@ -1,155 +0,0 @@ -<?php -/** - * Elgg riverdashboard CSS - * - */ -?> -#riverdashboard_updates { - border-bottom:1px solid #cccccc; -} -#riverdashboard_updates a.update_link { - display: inline-table; - color:white; - font-weight: bold; - padding:1px 8px 2px 24px; - margin-top:9px; - cursor: pointer; - background: red url("<?php echo $vars['url']; ?>mod/riverdashboard/graphics/refresh.png") no-repeat 5px 3px; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; -} -#riverdashboard_updates a.update_link:hover { - background: #4690D6 url("<?php echo $vars['url']; ?>mod/riverdashboard/graphics/refresh.png") no-repeat 5px -22px; - color:white; - text-decoration: none; -} -.riverdashboard_filtermenu { - margin:10px 0 10px 0; - float:right; -} - -/* RIVER ENTRY */ -.river_item { - border-bottom:1px solid #cccccc; - padding:7px 0 7px 0; -} -.river_item p { - margin:0; -} -.river_item .entity_subtext { - padding-left:5px; - padding-right:5px; - font-size:85%; -} -.river_item_useravatar { - float:left; - margin-top:3px; - margin-left:1px; -} -.river_item_contents { - margin-left:55px; -} -.river_content_display { - border-left:1px solid #DDDDDD; - font-size:85%; - line-height:1.5em; - margin:8px 0 5px 0; - padding-left:5px; -} -.following_icon { - width:20px; - height:25px; - margin:0 2px 0 2px; - background: url(<?php echo $vars['url']; ?>mod/riverdashboard/graphics/follow_icon.png) no-repeat left -7px; -} - -/* LATEST COMMENTS IN RIVER */ -.river_comments_tabs { - max-height: 19px; - overflow:hidden; -} -.river_comments { - -moz-border-radius-bottomleft:5px; - -moz-border-radius-bottomright:5px; - -moz-border-radius-topleft:5px; - -moz-border-radius-topright:0; - -webkit-border-top-left-radius:5px; - -webkit-border-top-right-radius:0; - -webkit-border-bottom-right-radius:5px; - -webkit-border-bottom-left-radius:5px; - background-color: #eeeeee; -} -.river_comment { - padding:3px; - border-bottom:1px solid white; -} -.river_comment.penultimate { - -} -.river_comment.latest { - -} -/* hidden inline comment form */ -.river_comment_form.hidden { - padding:5px; -} -.river_comment_form.hidden .input_text { - width:560px; - padding:3px; -} -.river_comment_form.hidden .submit_button { - margin:0 0 0 10px; - float:right; -} -.river_link_divider { - color:#999999; -} -.river_comment_form_button, -.river_user_like_button { - font-size:85%; -} -/* hidden list of users that liked item */ -.river_item .elgg_likes_user { - border-bottom:1px solid white; - padding:3px; -} -.river_item .elgg_likes_user .entity_listing_icon { - margin:3px 0 4px 2px; -} -.river_item .elgg_likes_user .entity_listing_info { - width:635px; -} -.river_item .elgg_likes_user .entity_metadata { - margin-top:3px; -} -.river_item p.elgg_likes_owner { - padding-top:4px; -} -.river_item a.river_more_comments { - display:block; - float:right; - padding:1px 7px 1px 7px; - margin-left:6px; - text-align:right; - font-size:85%; - width:auto; - background-color: #eeeeee; - -moz-border-radius-topleft:4px; - -moz-border-radius-topright:4px; - -webkit-border-top-left-radius:4px; - -webkit-border-top-right-radius:4px; -} -.river_item a.river_more_comments.off { - background-color: white; -} -.river_item .river_comment_owner_icon { - float:left; - margin:3px 8px 4px 2px; -} -.river_item .river_comment_contents { - margin-left:34px; -} - - - - diff --git a/mod/riverdashboard/views/default/riverdashboard/js.php b/mod/riverdashboard/views/default/riverdashboard/js.php deleted file mode 100644 index b1bace04a..000000000 --- a/mod/riverdashboard/views/default/riverdashboard/js.php +++ /dev/null @@ -1,35 +0,0 @@ -<script type="text/javascript"> - $(document).ready(function() { - $('.river_comment_form_button').click(function() { - elgg_slide_toggle(this,'.river_item','.river_comment_form'); - }); - - $('.likes_user_list_button').click(function() { - var myParent = $(this).closest('.river_item'); - if (myParent.find('.likes_list').css('display') == 'none') { - // hide comments - myParent.find('.river_comment').animate({"height": "toggle", "opacity": "toggle"}, { duration: 400 }); - // change selected tab - myParent.find('.show_comments_button').addClass('off'); - myParent.find('.likes_user_list_button').removeClass('off'); - // show users that liked object - elgg_slide_toggle(this,'.river_item','.likes_list'); - } - }); - - - $('.show_comments_button').click(function() { - var myParent = $(this).closest('.river_item'); - if (myParent.find('.river_comment').css('display') == 'none') { - // hide comments - myParent.find('.likes_list').animate({"height": "toggle", "opacity": "toggle"}, { duration: 400 }); - // change selected tab - myParent.find('.show_comments_button').removeClass('off'); - myParent.find('.likes_user_list_button').addClass('off'); - // show users that liked object - elgg_slide_toggle(this,'.river_item','.river_comment'); - } - }); - - }); -</script>
\ No newline at end of file diff --git a/mod/riverdashboard/views/default/riverdashboard/menu.php b/mod/riverdashboard/views/default/riverdashboard/menu.php deleted file mode 100644 index c5c49f0a3..000000000 --- a/mod/riverdashboard/views/default/riverdashboard/menu.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php -/** - * Elgg activity stream menu - */ -$allselect = ''; $friendsselect = ''; $mineselect = ''; $display_option = ''; -switch($vars['orient']) { - case 'all': $allselect = 'class="selected"'; - break; - case 'friends': $friendsselect = 'class="selected"'; - $display_option = '&display=friends'; - break; - case 'mine': $mineselect = 'class="selected"'; - $display_option = '&display=mine'; - break; -} -?> -<ul class="submenu riverdashboard"> -<?php - if(isloggedin()){ -?> - <li <?php echo $allselect; ?> ><a href="<?php echo $vars['url']; ?>mod/riverdashboard/"><?php echo elgg_echo('all'); ?></a></li> - <li <?php echo $friendsselect; ?> ><a href="<?php echo $vars['url']; ?>mod/riverdashboard/?display=friends"><?php echo elgg_echo('friends'); ?></a></li> - <li <?php echo $mineselect; ?> ><a href="<?php echo $vars['url']; ?>mod/riverdashboard/?display=mine"><?php echo elgg_echo('mine'); ?></a></li> - -<?php - } -?> -</ul>
\ No newline at end of file diff --git a/mod/riverdashboard/views/default/riverdashboard/nav.php b/mod/riverdashboard/views/default/riverdashboard/nav.php deleted file mode 100644 index ab4aab10d..000000000 --- a/mod/riverdashboard/views/default/riverdashboard/nav.php +++ /dev/null @@ -1,51 +0,0 @@ -<?php - -$contents = array(); -$contents['all'] = 'all'; -if (!empty($vars['config']->registered_entities)) { - foreach ($vars['config']->registered_entities as $type => $ar) { - foreach ($vars['config']->registered_entities[$type] as $object) { - if($object != 'helppage'){ - if (!empty($object )) { - $keyname = 'item:'.$type.':'.$object; - } else $keyname = 'item:'.$type; - $contents[$keyname] = "{$type},{$object}"; - } - } - } -} - -$allselect = ''; $friendsselect = ''; $mineselect = ''; $display_option = ''; -switch($vars['orient']) { - case '': $allselect = 'class="selected"'; - break; - case 'friends': $friendsselect = 'class="selected"'; - $display_option = '&display=friends'; - break; - case 'mine': $mineselect = 'class="selected"'; - $display_option = '&display=mine'; - break; -} -?> -<div class="riverdashboard_filtermenu"> - <?php - $location_filter = "<select onchange=\"window.open(this.options[this.selectedIndex].value,'_top')\" name=\"file_filter\" class='Notstyled' >"; - $current = get_input('subtype'); - foreach($contents as $label => $content) { - $get_values = explode(",", $content); - //select the current filter - if($get_values[1] == $current) - $selected = "SELECTED"; - //set the drop down filter - if($content[0] && $content[1]) - $location_filter .= "<option {$selected} class='Nomenuoption' value=\"{$CONFIG->url}mod/riverdashboard/index.php?type={$get_values[0]}&subtype={$get_values[1]}{$display_option}\" >" . elgg_echo($label) . "</option>"; - //reset selected - $selected = ''; - } - $location_filter .= "</select>"; - echo $location_filter; - ?> - <input type="hidden" name="display" id="display" value="<?php echo htmlentities($vars['orient']); ?>" /> -</div> - -<div id="riverdashboard_updates" class="clearfloat"></div> diff --git a/mod/riverdashboard/views/default/riverdashboard/rivercomment.php b/mod/riverdashboard/views/default/riverdashboard/rivercomment.php deleted file mode 100644 index d440e7ab6..000000000 --- a/mod/riverdashboard/views/default/riverdashboard/rivercomment.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php -/** - * Elgg comments add on river form - * @uses $vars['entity'] - */ - -if (isset($vars['entity']) && isloggedin()) { - $form_body = "<div class='river_comment_form hidden'>"; - $form_body .= elgg_view('input/text',array( - 'internalname' => 'generic_comment', - 'value' => 'Add a comment...', - 'js' => "onfocus=\"if (this.value=='Add a comment...') { this.value='' };\" onblur=\"if (this.value=='') { this.value='Add a comment...' }\"" - )); - $form_body .= elgg_view('input/hidden', array('internalname' => 'entity_guid', 'value' => $vars['entity']->getGUID())); - $form_body .= elgg_view('input/submit', array('value' => elgg_echo("Comment"))); - $form_body .= "</div>"; - echo elgg_view('input/form', array('body' => $form_body, 'action' => "{$vars['url']}action/comments/add")); -}
\ No newline at end of file diff --git a/mod/riverdashboard/views/default/riverdashboard/sitemessage.php b/mod/riverdashboard/views/default/riverdashboard/sitemessage.php deleted file mode 100644 index 058c0d17f..000000000 --- a/mod/riverdashboard/views/default/riverdashboard/sitemessage.php +++ /dev/null @@ -1,96 +0,0 @@ -<?php - - /** - * Elgg thewire view page - * - * @package ElggTheWire - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 - * @author Curverider <info@elgg.com> - * @copyright Curverider Ltd 2008-2010 - * @link http://elgg.com/ - * - */ - - //grab the current site message - $site_message = elgg_get_entities(array('types' => 'object', 'subtypes' => 'sitemessage', 'limit' => 1)); - if ($site_message) { - $mes = $site_message[0]; - $message = $mes->description; - $dateStamp = friendly_time($mes->time_created); - $delete = elgg_view("output/confirmlink",array( - 'href' => $vars['url'] . "action/riverdashboard/delete?message=" . $mes->guid, - 'text' => elgg_echo('delete'), - 'confirm' => elgg_echo('deleteconfirm'), - )); - } - -?> - - -<?php - - //if there is a site message - if($site_message){ - -?> - - <?php - - echo "<h3>" . elgg_echo("sitemessages:announcements") . "</h3>"; - echo "<p><small>" . elgg_echo("sitemessages:posted") . ": " . $dateStamp; - //if admin display the delete link - if(isadminloggedin()) - echo " " . $delete . " "; - echo "</small></p>"; - //display the message - echo "<p>" . $message . "</p>"; - - //display the input form to add a new message - if(isadminloggedin()){ - //action - $action = "riverdashboard/add"; - $link = elgg_echo("sitemessages:add"); - $input_area = elgg_view('input/plaintext', array('internalname' => 'sitemessage', 'value' => '')); - $submit_input = elgg_view('input/submit', array('internalname' => 'submit', 'value' => elgg_echo('save'))); - $form_body = <<<EOT - - <p><a class="collapsibleboxlink">{$link}</a></p> - <div class="collapsible_box"> - {$input_area}<br />{$submit_input} - </div> - -EOT; -?> - -<?php - //display the form - echo elgg_view('input/form', array('action' => "{$vars['url']}action/$action", 'body' => $form_body)); - - }//end of admin if statement -?> -<?php - //if there is no message, add a form to create one - }else{ - - if(isadminloggedin()){ - - //action - $action = "riverdashboard/add"; - $link = elgg_echo("sitemessages:add"); - $input_area = elgg_view('input/text', array('internalname' => 'sitemessage', 'value' => '')); - $submit_input = elgg_view('input/submit', array('internalname' => 'submit', 'value' => elgg_echo('save'))); - $form_body = <<<EOT - - <p><a class="collapsibleboxlink">{$link}</a></p> - <div class="collapsible_box"> - {$input_area}<br />{$submit_input} - </div> -EOT; -?> -<?php - //display the form - echo elgg_view('input/form', array('action' => "{$vars['url']}action/$action", 'body' => $form_body)); - - }//end of admin check - }//end of main if -?> diff --git a/mod/riverdashboard/views/default/riverdashboard/welcome.php b/mod/riverdashboard/views/default/riverdashboard/welcome.php deleted file mode 100644 index 0e83fb63f..000000000 --- a/mod/riverdashboard/views/default/riverdashboard/welcome.php +++ /dev/null @@ -1,8 +0,0 @@ -<?php - - /** - * Elgg thewire view page - */ - -?> -<h2><?php echo sprintf(elgg_echo('welcome:user'), $_SESSION['user']->name); ?></h2>
\ No newline at end of file diff --git a/mod/riverdashboard/views/default/settings/riverdashboard/edit.php b/mod/riverdashboard/views/default/settings/riverdashboard/edit.php deleted file mode 100644 index 1a581f96b..000000000 --- a/mod/riverdashboard/views/default/settings/riverdashboard/edit.php +++ /dev/null @@ -1,9 +0,0 @@ -<?php -?> -<p> - <?php echo elgg_echo('riverdashboard:useasdashboard'); ?> - <select name="params[useasdashboard]"> - <option value="yes" <?php if ($vars['entity']->useasdashboard == 'yes') echo " selected=\"yes\" "; ?>><?php echo elgg_echo('option:yes'); ?></option> - <option value="no" <?php if ($vars['entity']->useasdashboard != 'yes') echo " selected=\"yes\" "; ?>><?php echo elgg_echo('option:no'); ?></option> - </select> -</p>
\ No newline at end of file diff --git a/mod/riverdashboard/views/json/riverdashboard/container.php b/mod/riverdashboard/views/json/riverdashboard/container.php deleted file mode 100644 index 871a6cc7e..000000000 --- a/mod/riverdashboard/views/json/riverdashboard/container.php +++ /dev/null @@ -1 +0,0 @@ -<?php echo $vars['body']; ?>
\ No newline at end of file diff --git a/mod/riverdashboard/views/rss/riverdashboard/container.php b/mod/riverdashboard/views/rss/riverdashboard/container.php deleted file mode 100644 index 871a6cc7e..000000000 --- a/mod/riverdashboard/views/rss/riverdashboard/container.php +++ /dev/null @@ -1 +0,0 @@ -<?php echo $vars['body']; ?>
\ No newline at end of file |
