AAAAhome/academiac/www/plugins/vmpayment/klarna/klarna/elements/klarnamultilist.php000060400000003631151375540230024200 0ustar00children() as $option) { $val = $option->attributes('value'); $text = $option->data(); $options[] = JHTML::_('select.option', $val, JText::_($text)); } // Construct the various argument calls that are supported. $attribs = ' '; if ($v = $node->attributes('size')) { $attribs .= 'size="' . $v . '"'; } if ($v = $node->attributes('class')) { $attribs .= 'class="' . $v . '"'; } else { $attribs .= 'class="inputbox"'; } if ($m = $node->attributes('multiple')) { $attribs = 'multiple="true" data-placeholder="' . JText::_('COM_VIRTUEMART_DRDOWN_SELECT_SOME_OPTIONS') . '"'; $ctrl .= '[]'; } // Render the HTML SELECT list. return JHTML::_('select.genericlist', $options, $ctrl, $attribs, 'value', 'text', $value, $control_name . $name); } }