0

我在 joomla 2.5 中使用此代码

$booleanlist = JHTML::_('select.checkboxlist', '1', 'K2ExtraField[]', '', 'value', 'name','');
print $booleanlist;

但是当运行代码得到错误select.checkboxlist不支持时,如何解决它

4

1 回答 1

1

Joomla 中没有“复选框列表”。

但从这个线程: http: //forum.joomla.org/viewtopic.php?t=210780

我找到了这段代码:

在文件库/joomla/html/html/select.php 中添加代码:

/*custom checkbox*/
   function checkboxlist( $arr, $name, $attribs = null, $key = 'value', $text = 'text', $selected = null, $idtag = false, $translate = false )
   {
      reset( $arr );
      $html = '';

      if (is_array($attribs)) {
         $attribs = JArrayHelper::toString($attribs);
       }

      $id_text = $name;
      if ( $idtag ) {
         $id_text = $idtag;
      }

      for ($i=0, $n=count( $arr ); $i < $n; $i++ )
      {
         $k   = $arr[$i]->$key;
         $t   = $translate ? JText::_( $arr[$i]->$text ) : $arr[$i]->$text;
         $id   = ( isset($arr[$i]->id) ? @$arr[$i]->id : null);

         $extra   = '';
         $extra   .= $id ? " id=\"" . $arr[$i]->id . "\"" : '';
         if (is_array( $selected ))
         {
            foreach ($selected as $val)
            {
               $k2 = is_object( $val ) ? $val->$key : $val;
               if ($k == $k2)
               {
                  $extra .= " selected=\"selected\"";
                  break;
               }
            }
         } else {
            $extra .= ((string)$k == (string)$selected ? " checked=\"checked\"" : '');
         }
         $html .= "\n\t<input type=\"checkbox\" name=\"$name\" id=\"$id_text$k\" value=\"".$k."\"$extra $attribs />";
         $html .= "\n\t<label for=\"$id_text$k\">$t</label><br>";
      }
      $html .= "\n";
      return $html;
   }
/*end custom checkbox*/
于 2012-06-20T15:08:37.483 回答