aboutsummaryrefslogtreecommitdiff
path: root/mod/thewire/views/default
diff options
context:
space:
mode:
authordave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-19 15:38:02 +0000
committerdave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-19 15:38:02 +0000
commitfe4e67d6190d0a0a8dc9db6ea22293fe206835d7 (patch)
tree7efaa78a73d06998df3fe822cdaea9f5b1a53f8c /mod/thewire/views/default
parent339c42f966b73652d7e4655443062bf77c7742e0 (diff)
downloadelgg-fe4e67d6190d0a0a8dc9db6ea22293fe206835d7.tar.gz
elgg-fe4e67d6190d0a0a8dc9db6ea22293fe206835d7.tar.bz2
the wire has been moved to core as it now powers profile status and status on member search
git-svn-id: https://code.elgg.org/elgg/trunk@2817 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/thewire/views/default')
-rw-r--r--mod/thewire/views/default/object/thewire.php104
-rw-r--r--mod/thewire/views/default/river/object/thewire/create.php15
-rw-r--r--mod/thewire/views/default/thewire/activity_view.php45
-rw-r--r--mod/thewire/views/default/thewire/css.php117
-rw-r--r--mod/thewire/views/default/thewire/forms/add.php54
-rw-r--r--mod/thewire/views/default/thewire/notfound.php21
-rw-r--r--mod/thewire/views/default/thewire/profile_status.php26
-rw-r--r--mod/thewire/views/default/thewire/scripts/counter.js19
-rw-r--r--mod/thewire/views/default/thewire/view.php27
-rw-r--r--mod/thewire/views/default/widgets/thewire/edit.php14
-rw-r--r--mod/thewire/views/default/widgets/thewire/view.php26
11 files changed, 468 insertions, 0 deletions
diff --git a/mod/thewire/views/default/object/thewire.php b/mod/thewire/views/default/object/thewire.php
new file mode 100644
index 000000000..525c96a6e
--- /dev/null
+++ b/mod/thewire/views/default/object/thewire.php
@@ -0,0 +1,104 @@
+<?php
+
+ /**
+ * Elgg thewire note view
+ *
+ * @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-2009
+ * @link http://elgg.com/
+ *
+ * @question - do we want users to be able to edit thewire?
+ *
+ * @uses $vars['entity'] Optionally, the note to view
+ */
+
+ if (isset($vars['entity'])) {
+
+ $user_name = $vars['entity']->getOwnerEntity()->username;
+
+ //if the note is a reply, we need some more info
+
+ $note_url = '';
+ $note_owner = elgg_echo("thewire:notedeleted");
+
+?>
+<div class="thewire-singlepage">
+ <div class="thewire-post">
+
+ <div class="thewire_icon">
+ <?php
+ echo elgg_view("profile/icon",array('entity' => $vars['entity']->getOwnerEntity(), 'size' => 'small'));
+ ?>
+ </div>
+
+ <!-- the actual shout -->
+ <p class="note_body">
+
+ <span style='float:right;'>
+
+ <a href="<?php echo $vars['url']; ?>mod/thewire/add.php?wire_username=<?php echo $vars['entity']->getOwnerEntity()->username; ?>" class="reply">reply</a>
+ <?php
+/* //only have a reply option for main notes, not other replies
+ if($vars['entity']->parent == 0){
+ ?>
+ <a href="<?php echo $vars['url']; ?>mod/thewire/reply.php?note_id=<?php echo $vars['entity']->guid; ?>" class="reply">reply</a>
+ <?php
+ }
+*/
+ ?>
+ <br />
+ <?php
+
+ // if the user looking at thewire post can edit, show the delete link
+ if ($vars['entity']->canEdit()) {
+
+
+ echo "<div class='delete_note'>" . elgg_view("output/confirmlink",array(
+ 'href' => $vars['url'] . "action/thewire/delete?thewirepost=" . $vars['entity']->getGUID(),
+ 'text' => elgg_echo('delete'),
+ 'confirm' => elgg_echo('deleteconfirm'),
+ )) . "</div>";
+
+ } //end of can edit if statement
+ ?>
+
+ </span>
+
+
+ <?php
+ echo "<b>{$user_name}: </b>";
+
+
+ $desc = $vars['entity']->description;
+
+ $desc = preg_replace('/\@([A-Za-z0-9\_\.\-]*)/i','@<a href="' . $vars['url'] . 'pg/thewire/$1">$1</a>',$desc);
+ echo parse_urls($desc);
+ ?>
+
+
+
+
+ </p>
+ <div class="note_date">
+
+ <?php
+
+ echo elgg_echo("thewire:wired") . " " . sprintf(elgg_echo("thewire:strapline"),
+ friendly_time($vars['entity']->time_created)
+ );
+
+ echo " via " . $vars['entity']->method . ".";
+
+ ?>
+ </div>
+
+
+ </div>
+</div>
+<?php
+
+ }
+
+?> \ No newline at end of file
diff --git a/mod/thewire/views/default/river/object/thewire/create.php b/mod/thewire/views/default/river/object/thewire/create.php
new file mode 100644
index 000000000..18cbbede4
--- /dev/null
+++ b/mod/thewire/views/default/river/object/thewire/create.php
@@ -0,0 +1,15 @@
+<?php
+
+ $performed_by = get_entity($vars['item']->subject_guid); // $statement->getSubject();
+ $object = get_entity($vars['item']->object_guid);
+ $url = $object->getURL();
+
+ $url = "<a href=\"{$performed_by->getURL()}\">{$performed_by->name}</a>";
+ $string = sprintf(elgg_echo("thewire:river:created"),$url) . " ";
+ $string .= "\"" . $object->description . "\" " . elgg_echo("thewire:river:create");
+
+?>
+
+<?php
+ echo $string;
+?> \ No newline at end of file
diff --git a/mod/thewire/views/default/thewire/activity_view.php b/mod/thewire/views/default/thewire/activity_view.php
new file mode 100644
index 000000000..2a3cdd2d9
--- /dev/null
+++ b/mod/thewire/views/default/thewire/activity_view.php
@@ -0,0 +1,45 @@
+<?php
+
+ /**
+ * New wire post view for the activity stream
+ */
+
+ //grab the users latest from the wire
+ $latest_wire = list_entities("object", "thewire", $_SESSION['user']->getGUID(), 1, true, false, false);
+
+?>
+
+<script>
+function textCounter(field,cntfield,maxlimit) {
+ // if too long...trim it!
+ if (field.value.length > maxlimit) {
+ field.value = field.value.substring(0, maxlimit);
+ } else {
+ // otherwise, update 'characters left' counter
+ cntfield.value = maxlimit - field.value.length;
+ }
+}
+</script>
+
+<div class="sidebarBox">
+
+ <form action="<?php echo $vars['url']; ?>action/thewire/add" method="post" name="noteForm">
+
+ <?php
+ $display .= "<h3>" . elgg_echo('thewire:newpost') . "</h3><textarea name='note' value='' onKeyDown=\"textCounter(document.noteForm.note,document.noteForm.remLen1,140)\" onKeyUp=\"textCounter(document.noteForm.note,document.noteForm.remLen1,140)\" id=\"thewire_sidebarInputBox\">{$msg}</textarea><br />";
+ $display .= "<div class='thewire_characters_remaining'><input readonly type=\"text\" name=\"remLen1\" size=\"3\" maxlength=\"3\" value=\"140\" class=\"thewire_characters_remaining_field\">";
+ echo $display;
+ echo elgg_echo("thewire:charleft") . "</div>";
+ ?>
+ <input type="hidden" name="method" value="site" />
+ <input type="hidden" name="location" value="activity" />
+ <input type="hidden" name="access_id" value="2" />
+ <input type="submit" value="<?php echo elgg_echo('save'); ?>" id="thewire_submit_button" />
+ </form>
+
+ <div class="last_wirepost">
+ <?php
+ echo $latest_wire;
+ ?>
+ </div>
+</div> \ No newline at end of file
diff --git a/mod/thewire/views/default/thewire/css.php b/mod/thewire/views/default/thewire/css.php
new file mode 100644
index 000000000..e628b2b05
--- /dev/null
+++ b/mod/thewire/views/default/thewire/css.php
@@ -0,0 +1,117 @@
+<?php
+
+ /**
+ * Elgg thewire CSS extender
+ *
+ * @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-2009
+ * @link http://elgg.com/
+ */
+
+?>
+
+.thewire-post {
+ background:#efefef;
+ margin-bottom:10px;
+}
+
+.thewire-post .note_date {
+ font-size:90%;
+ color:#666666;
+ background:#ffffff url(<?php echo $vars['url']; ?>mod/thewire/graphics/thewire_speech_bubble.gif) no-repeat right top;
+ height:20px;
+ padding:0;
+}
+
+.thewire_icon {
+ float:left;
+ margin:4px 10px 4px 4px;
+}
+.note_body {
+ margin:0;
+ padding:6px 4px 4px 4px;
+ min-height: 40px;
+ line-height: 1.4em;
+}
+
+.thewire-post .reply {
+ font: 11px/100% Arial, Helvetica, sans-serif;
+ font-weight: bold;
+ color: #ffffff;
+ background:#4690d6;
+ border: 2px solid #4690d6;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ width: auto;
+ padding: 0 3px 2px 3px;
+ margin:0 0 5px 5px;
+ cursor: pointer;
+ float:right;
+}
+.thewire-post .reply:hover {
+ background: #0054a7;
+ border: 2px solid #0054a7;
+ text-decoration: none;
+}
+.thewire_options {
+ float:right;
+}
+.thewire-post .delete_note a {
+ display:block;
+ float:right;
+ cursor: pointer;
+ width:14px;
+ height:14px;
+ margin:3px 3px 0 0;
+ background: url("<?php echo $vars['url']; ?>_graphics/icon_customise_remove.png") no-repeat 0 0;
+ text-indent: -9000px;
+}
+.thewire-post .delete_note a:hover {
+ background-position: 0 -16px;
+}
+/*-------------------------------
+REPLY DIV AND FORM
+-------------------------------*/
+
+
+/* used on shout out form, reply form */
+textarea#thewire_large-textarea {
+ width: 668px;
+ height: 80px;
+ padding: 6px;
+ font-family: Arial, 'Trebuchet MS','Lucida Grande', sans-serif;
+ font-size: 100%;
+ color:#666666;
+ margin-bottom:10px;
+}
+
+input.thewire_characters_remaining_field {
+ color:#333333;
+ border:none;
+ font-size: 100%;
+ font-weight: bold;
+ padding:0 2px 0 0;
+ margin:0;
+ text-align: right;
+}
+.thewire_characters_remaining {
+ text-align: right;
+}
+
+input#thewire_submit_button {
+ background-color: #3399cc;/* blue */
+ color:#ffffff;
+ font-size: 11px;
+ font-weight: bold;
+ text-decoration:none;
+ margin:0;
+ padding:4px;
+ border:none;
+ cursor:pointer;
+}
+
+input#thewire_submit_button:hover {
+ background-color: #000000;
+} \ No newline at end of file
diff --git a/mod/thewire/views/default/thewire/forms/add.php b/mod/thewire/views/default/thewire/forms/add.php
new file mode 100644
index 000000000..00efb61ae
--- /dev/null
+++ b/mod/thewire/views/default/thewire/forms/add.php
@@ -0,0 +1,54 @@
+<?php
+
+ /**
+ * Elgg thewire edit/add 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-2009
+ * @link http://elgg.com/
+ *
+ */
+
+ $wire_user = get_input('wire_username');
+ if (!empty($wire_user)) { $msg = '@' . $wire_user . ' '; } else { $msg = ''; }
+
+?>
+<div class="contentWrapper">
+<script>
+function textCounter(field,cntfield,maxlimit) {
+ // if too long...trim it!
+ if (field.value.length > maxlimit) {
+ field.value = field.value.substring(0, maxlimit);
+ } else {
+ // otherwise, update 'characters left' counter
+ cntfield.value = maxlimit - field.value.length;
+ }
+}
+</script>
+
+ <form action="<?php echo $vars['url']; ?>action/thewire/add" method="post" name="noteForm">
+ <label>
+ <?php
+ $display .= "<br /><textarea name='note' value='' onKeyDown=\"textCounter(document.noteForm.note,document.noteForm.remLen1,140)\" onKeyUp=\"textCounter(document.noteForm.note,document.noteForm.remLen1,140)\" id=\"thewire_large-textarea\">{$msg}</textarea><br />";
+ $display .= "<div class='thewire_characters_remaining'><input readonly type=\"text\" name=\"remLen1\" size=\"3\" maxlength=\"3\" value=\"140\" class=\"thewire_characters_remaining_field\">";
+ echo $display;
+ echo elgg_echo("thewire:charleft") . "</div>";
+ echo "<label> " .elgg_echo('access'). "</label>";
+ ?>
+ </label>
+ <p>
+ <?php
+
+ echo elgg_view('input/access', array('internalname' => 'access_id', 'value' => 2));
+
+ ?>
+ </p>
+ <input type="hidden" name="method" value="site" />
+ <br />
+ <input type="submit" value="<?php echo elgg_echo('save'); ?>" id="thewire_submit_button" />
+
+
+ </form>
+</div> \ No newline at end of file
diff --git a/mod/thewire/views/default/thewire/notfound.php b/mod/thewire/views/default/thewire/notfound.php
new file mode 100644
index 000000000..e092d37a1
--- /dev/null
+++ b/mod/thewire/views/default/thewire/notfound.php
@@ -0,0 +1,21 @@
+<?php
+
+ /**
+ * Elgg shout not found page
+ *
+ * @package ElggShouts
+ * @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-2009
+ * @link http://elgg.com/
+ */
+
+?>
+
+ <p>
+ <?php
+
+ echo elgg_echo("thewire:notfound");
+
+ ?>
+ </p> \ No newline at end of file
diff --git a/mod/thewire/views/default/thewire/profile_status.php b/mod/thewire/views/default/thewire/profile_status.php
new file mode 100644
index 000000000..507781497
--- /dev/null
+++ b/mod/thewire/views/default/thewire/profile_status.php
@@ -0,0 +1,26 @@
+<?php
+
+ /**
+ * New wire post view for the activity stream
+ */
+
+ $owner = $vars['entity']->guid;
+
+ //grab the users latest from the wire
+ $latest_wire = get_entities("object", "thewire", $owner, "", 1, 0, false, 0, null);
+
+ if($latest_wire){
+ foreach($latest_wire as $lw){
+ $content = $lw->description;
+ $time = "<span>" . friendly_time($lw->time_created) . "</span>";
+ }
+ }
+
+?>
+
+<div class="profile_status">
+ <?php
+ if($latest_wire)
+ echo $content . " " . $time;
+ ?>
+</div> \ No newline at end of file
diff --git a/mod/thewire/views/default/thewire/scripts/counter.js b/mod/thewire/views/default/thewire/scripts/counter.js
new file mode 100644
index 000000000..da3de0e58
--- /dev/null
+++ b/mod/thewire/views/default/thewire/scripts/counter.js
@@ -0,0 +1,19 @@
+// I need to move this into a JS folder for the plugin
+
+/*
+<!-- Dynamic Version by: Nannette Thacker -->
+<!-- http://www.shiningstar.net -->
+<!-- Original by : Ronnie T. Moore -->
+<!-- Web Site: The JavaScript Source -->
+<!-- Limit the number of characters per textarea -->
+*/
+
+function textCounter(field,cntfield,maxlimit) {
+ // if too long...trim it!
+ if (field.value.length > maxlimit) {
+ field.value = field.value.substring(0, maxlimit);
+ } else {
+ // otherwise, update 'characters left' counter
+ cntfield.value = maxlimit - field.value.length;
+ }
+}
diff --git a/mod/thewire/views/default/thewire/view.php b/mod/thewire/views/default/thewire/view.php
new file mode 100644
index 000000000..da9b3f774
--- /dev/null
+++ b/mod/thewire/views/default/thewire/view.php
@@ -0,0 +1,27 @@
+<?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-2009
+ * @link http://elgg.com/
+ *
+ * @uses $vars['entity'] An array of wire notes to view
+ *
+ */
+
+ // If there are any wire notes to view, view them
+ if (is_array($vars['entity']) && sizeof($vars['entity']) > 0) {
+
+ foreach($vars['entity'] as $shout) {
+
+ echo elgg_view_entity($shout);
+
+ }
+
+ }
+
+?> \ No newline at end of file
diff --git a/mod/thewire/views/default/widgets/thewire/edit.php b/mod/thewire/views/default/widgets/thewire/edit.php
new file mode 100644
index 000000000..417b4b93a
--- /dev/null
+++ b/mod/thewire/views/default/widgets/thewire/edit.php
@@ -0,0 +1,14 @@
+<?php
+
+?>
+ <p>
+ <?php echo elgg_echo("thewire:num"); ?>
+ <select name="params[num_display]">
+ <option value="1" <?php if($vars['entity']->num_display == 1) echo "SELECTED"; ?>>1</option>
+ <option value="2" <?php if($vars['entity']->num_display == 2) echo "SELECTED"; ?>>2</option>
+ <option value="3" <?php if($vars['entity']->num_display == 3) echo "SELECTED"; ?>>3</option>
+ <option value="4" <?php if($vars['entity']->num_display == 4) echo "SELECTED"; ?>>4</option>
+ <option value="5" <?php if($vars['entity']->num_display == 5) echo "SELECTED"; ?>>5</option>
+ <option value="6" <?php if($vars['entity']->num_display == 6) echo "SELECTED"; ?>>6</option>
+ </select>
+ </p> \ No newline at end of file
diff --git a/mod/thewire/views/default/widgets/thewire/view.php b/mod/thewire/views/default/widgets/thewire/view.php
new file mode 100644
index 000000000..af6570df5
--- /dev/null
+++ b/mod/thewire/views/default/widgets/thewire/view.php
@@ -0,0 +1,26 @@
+<p>
+ <?php
+
+ // Get any wire notes to display
+ // Get the current page's owner
+ $page_owner = page_owner_entity();
+ if ($page_owner === false || is_null($page_owner)) {
+ $page_owner = $_SESSION['user'];
+ set_page_owner($page_owner->getGUID());
+ }
+
+ $thewire = $page_owner->getObjects('thewire', $vars['entity']->num_display);
+
+ // If there are any thewire to view, view them
+ if (is_array($thewire) && sizeof($thewire) > 0) {
+
+ foreach($thewire as $shout) {
+
+ echo elgg_view_entity($shout);
+
+ }
+
+ }
+
+ ?>
+</p> \ No newline at end of file