我正在创建 joomla 3 自定义组件,其中使用自定义字段类型(mycomponent/models/fields/productcategory.php)创建产品类别列表框。它还以正确的方式展示了产品的笼子。
但是我需要在模块管理器中显示带有搜索选项的产品类别选择列表框,例如位置字段。我在下面包含了我的编码
`class JFormFieldProductCat extends JFormFieldList
{
/**
* The form field type.
*
* @var string
* @since 1.6
*/
protected $type = 'ProductCat';
/**
* Method to get the field options.
*
* @return array The field option objects.
* @since 1.6
*/
public function getOptions()
{
// Initialize variables.
$options = array();
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$query->select('id, productcat');
$query->from('#__productcats AS a');
$query->order('a.productcat');
$query->where('published = 1');
// Get the options.
$db->setQuery($query);
$options = array();
$options[] = JHTML::_('select.option', '0', 'Select Category Name');
$result = $db->loadObjectList();
foreach($result as $row)
{
$options[] = JHTML::_('select.option', $row->id, $row->productcat);
}
// Check for a database error.
if ($db->getErrorNum()) {
JError::raiseWarning(500, $db->getErrorMsg());
}
return $options;
}
}`