本文整理汇总了PHP中JFormFieldText::getSuggestions方法的典型用法代码示例。如果您正苦于以下问题:PHP JFormFieldText::getSuggestions方法的具体用法?PHP JFormFieldText::getSuggestions怎么用?PHP JFormFieldText::getSuggestions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JFormFieldText
的用法示例。
在下文中一共展示了JFormFieldText::getSuggestions方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getSuggestions
/**
* Method to get the field suggestions.
*
* @return array The field option objects.
*
* @since 11.1
*/
protected function getSuggestions()
{
$options = array();
$db = JFactory::getDbo();
$query = $db->getQuery(true)->select('city AS value, city AS `text`, country AS class')->from('#__sibdiet_profiles')->group('city')->order('class, value');
$db->setQuery($query);
try {
$options = $db->loadObjectList();
} catch (RuntimeException $e) {
JError::raiseWarning(500, $e->getMessage());
}
return array_merge(parent::getSuggestions(), $options);
}
示例2: getSuggestions
/**
* Method to get the field suggestions.
*
* @return array The field option objects.
*
* @since 11.1
*/
protected function getSuggestions()
{
$options = array();
$db = JFactory::getDbo();
$query = $db->getQuery(true)->select('name AS value, name AS text')->from('#__testyourself_questions AS a')->order('a.name')->group('name');
// Get the options.
$db->setQuery($query);
try {
$options = $db->loadObjectList();
} catch (RuntimeException $e) {
JError::raiseWarning(500, $e->getMessage());
}
return array_merge(parent::getSuggestions(), $options);
}