public static function getEmailSendSelectBox($value)
{
// see: administrator/components/com_phocacart/models/forms/phocacartstatus.xml
$data = array(0 => Text::_('COM_PHOCACART_NOTHING'), 1 => Text::_('COM_PHOCACART_ORDER'), 2 => Text::_('COM_PHOCACART_INVOICE'), 3 => Text::_('COM_PHOCACART_DELIVERY_NOTE'));
return HTMLHelper::_('select.genericlist', $data, 'jform[email_send]', 'class="form-select"', 'value', 'text', $value, $data[$value]);
}