Ignore:
Timestamp:
Jun 18, 2014, 10:39:25 PM (10 years ago)
Author:
rvelices
Message:

removed unused get_html_tag_selection function + css rules

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/functions_html.inc.php

    r28587 r28715  
    232232}
    233233
    234 /**
    235  * Returns an HTML list of tags. It can be a multi select field or a list of
    236  * checkboxes.
    237  *
    238  * @param string HTML field name
    239  * @param array selected tag ids
    240  * @return array
    241  */
    242 function get_html_tag_selection(
    243   $tags,
    244   $fieldname,
    245   $selecteds = array(),
    246   $forbidden_categories = null
    247   )
    248 {
    249   global $conf;
    250 
    251   if (count ($tags) == 0 )
    252   {
    253     return '';
    254   }
    255   $output = '<ul class="tagSelection">';
    256   foreach ($tags as $tag)
    257   {
    258     $output.=
    259       '<li>'
    260       .'<label>'
    261       .'<input type="checkbox" name="'.$fieldname.'[]"'
    262       .' value="'.$tag['id'].'"'
    263       ;
    264 
    265     if (in_array($tag['id'], $selecteds))
    266     {
    267       $output.= ' checked="checked"';
    268     }
    269 
    270     $output.=
    271       '> '
    272       .$tag['name']
    273       .'</label>'
    274       .'</li>'
    275       ."\n"
    276       ;
    277   }
    278   $output.= '</ul>';
    279 
    280   return $output;
    281 }
    282234
    283235/**
Note: See TracChangeset for help on using the changeset viewer.