aboutsummaryrefslogtreecommitdiff
path: root/views/default/input/tags.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/input/tags.php')
-rw-r--r--views/default/input/tags.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/views/default/input/tags.php b/views/default/input/tags.php
deleted file mode 100644
index 3f5e2481a..000000000
--- a/views/default/input/tags.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-/**
- * Elgg tag input
- * Displays a tag input field
- *
- * @package Elgg
- * @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
- *
- * @uses $vars['value'] The current value, if any - string or array - tags will be encoded
- */
-
-$defaults = array(
- 'class' => 'input-tags',
- 'placeholder' => elgg_echo('placeholder:tags'),
-);
-
-if (isset($vars['value']) && is_array($vars['value'])) {
- $vars['value'] = implode(", ", $vars['value']);
-}
-
-echo elgg_view('input/text', array_merge($defaults, $vars)); \ No newline at end of file