aboutsummaryrefslogtreecommitdiff
path: root/views/default/html/input.php
diff options
context:
space:
mode:
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