aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions_html.inc.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2014-06-18 20:39:25 +0000
committerrvelices <rv-github@modusoptimus.com>2014-06-18 20:39:25 +0000
commitcac256e388a13e791cbc110d878aa26ed7664145 (patch)
tree7ada275f0b960a53e0b5842ec5bb713b78ee4fbd /include/functions_html.inc.php
parent3c13387dfd965afe5c3b2d9bd0e31303599d8784 (diff)
removed unused get_html_tag_selection function + css rules
git-svn-id: http://piwigo.org/svn/trunk@28715 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/functions_html.inc.php')
-rw-r--r--include/functions_html.inc.php48
1 files changed, 0 insertions, 48 deletions
diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php
index 5827f06a1..8668e68ad 100644
--- a/include/functions_html.inc.php
+++ b/include/functions_html.inc.php
@@ -231,54 +231,6 @@ function render_comment_content($content)
return $content;
}
-/**
- * Returns an HTML list of tags. It can be a multi select field or a list of
- * checkboxes.
- *
- * @param string HTML field name
- * @param array selected tag ids
- * @return array
- */
-function get_html_tag_selection(
- $tags,
- $fieldname,
- $selecteds = array(),
- $forbidden_categories = null
- )
-{
- global $conf;
-
- if (count ($tags) == 0 )
- {
- return '';
- }
- $output = '<ul class="tagSelection">';
- foreach ($tags as $tag)
- {
- $output.=
- '<li>'
- .'<label>'
- .'<input type="checkbox" name="'.$fieldname.'[]"'
- .' value="'.$tag['id'].'"'
- ;
-
- if (in_array($tag['id'], $selecteds))
- {
- $output.= ' checked="checked"';
- }
-
- $output.=
- '> '
- .$tag['name']
- .'</label>'
- .'</li>'
- ."\n"
- ;
- }
- $output.= '</ul>';
-
- return $output;
-}
/**
* Callback used for sorting by name.