本文整理汇总了PHP中FrmFieldsHelper::get_countries方法的典型用法代码示例。如果您正苦于以下问题:PHP FrmFieldsHelper::get_countries方法的具体用法?PHP FrmFieldsHelper::get_countries怎么用?PHP FrmFieldsHelper::get_countries使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FrmFieldsHelper
的用法示例。
在下文中一共展示了FrmFieldsHelper::get_countries方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_countries
public static function get_countries()
{
_deprecated_function(__FUNCTION__, '2.0', 'FrmFieldsHelper::get_countries');
return FrmFieldsHelper::get_countries();
}
示例2: get_bulk_prefilled_opts
public static function get_bulk_prefilled_opts(array &$prepop)
{
$prepop[__('Countries', 'formidable')] = FrmFieldsHelper::get_countries();
$states = FrmFieldsHelper::get_us_states();
$state_abv = array_keys($states);
sort($state_abv);
$prepop[__('U.S. State Abbreviations', 'formidable')] = $state_abv;
$states = array_values($states);
sort($states);
$prepop[__('U.S. States', 'formidable')] = $states;
unset($state_abv, $states);
$prepop[__('Age', 'formidable')] = array(__('Under 18', 'formidable'), __('18-24', 'formidable'), __('25-34', 'formidable'), __('35-44', 'formidable'), __('45-54', 'formidable'), __('55-64', 'formidable'), __('65 or Above', 'formidable'), __('Prefer Not to Answer', 'formidable'));
$prepop[__('Satisfaction', 'formidable')] = array(__('Very Satisfied', 'formidable'), __('Satisfied', 'formidable'), __('Neutral', 'formidable'), __('Unsatisfied', 'formidable'), __('Very Unsatisfied', 'formidable'), __('N/A', 'formidable'));
$prepop[__('Importance', 'formidable')] = array(__('Very Important', 'formidable'), __('Important', 'formidable'), __('Neutral', 'formidable'), __('Somewhat Important', 'formidable'), __('Not at all Important', 'formidable'), __('N/A', 'formidable'));
$prepop[__('Agreement', 'formidable')] = array(__('Strongly Agree', 'formidable'), __('Agree', 'formidable'), __('Neutral', 'formidable'), __('Disagree', 'formidable'), __('Strongly Disagree', 'formidable'), __('N/A', 'formidable'));
$prepop = apply_filters('frm_bulk_field_choices', $prepop);
}