aboutsummaryrefslogtreecommitdiff
path: root/views/default/html/input.php
diff options
context:
space:
mode:
authorEvan Winslow <evan.b.winslow@gmail.com>2010-10-19 00:38:13 +0000
committerEvan Winslow <evan.b.winslow@gmail.com>2010-10-19 00:38:13 +0000
commit4e34bacad758404f7a713e31d2ff5864c0d91c30 (patch)
tree3dcca816eff365125fa3b725a08f687586c7d45b /views/default/html/input.php
parent6cf50446e4071095c0b18a76038fb96de5a10475 (diff)
downloadelgg-4e34bacad758404f7a713e31d2ff5864c0d91c30.tar.gz
elgg-4e34bacad758404f7a713e31d2ff5864c0d91c30.tar.bz2
Updated to new directory structure
Diffstat (limited to 'views/default/html/input.php')
-rw-r--r--views/default/html/input.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/views/default/html/input.php b/views/default/html/input.php
new file mode 100644
index 000000000..7350ae308
--- /dev/null
+++ b/views/default/html/input.php
@@ -0,0 +1,12 @@
+<?php
+$defaults = array(
+ 'type' => 'text',
+);
+
+$overrides = array(
+ 'tag' => 'input',
+);
+
+$args = array_merge($defaults, $vars, $overrides);
+
+echo elgg_view('html/tag', $args); \ No newline at end of file