aboutsummaryrefslogtreecommitdiff
path: root/mod/thewire/views/default/thewire/forms/add.php
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/thewire/forms/add.php
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/thewire/forms/add.php')
-rw-r--r--mod/thewire/views/default/thewire/forms/add.php54
1 files changed, 54 insertions, 0 deletions
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