本文整理匯總了PHP中FrmFieldsHelper::get_bulk_prefilled_opts方法的典型用法代碼示例。如果您正苦於以下問題:PHP FrmFieldsHelper::get_bulk_prefilled_opts方法的具體用法?PHP FrmFieldsHelper::get_bulk_prefilled_opts怎麽用?PHP FrmFieldsHelper::get_bulk_prefilled_opts使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類FrmFieldsHelper
的用法示例。
在下文中一共展示了FrmFieldsHelper::get_bulk_prefilled_opts方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: import_choices
public static function import_choices()
{
if (!current_user_can('frm_edit_forms')) {
wp_die();
}
$field_id = absint($_REQUEST['field_id']);
global $current_screen, $hook_suffix;
// Catch plugins that include admin-header.php before admin.php completes.
if (empty($current_screen) && function_exists('set_current_screen')) {
$hook_suffix = '';
set_current_screen();
}
if (function_exists('register_admin_color_schemes')) {
register_admin_color_schemes();
}
$hook_suffix = $admin_body_class = '';
if (get_user_setting('mfold') == 'f') {
$admin_body_class .= ' folded';
}
if (function_exists('is_admin_bar_showing') && is_admin_bar_showing()) {
$admin_body_class .= ' admin-bar';
}
if (is_rtl()) {
$admin_body_class .= ' rtl';
}
$admin_body_class .= ' admin-color-' . sanitize_html_class(get_user_option('admin_color'), 'fresh');
$prepop = array();
FrmFieldsHelper::get_bulk_prefilled_opts($prepop);
$field = FrmField::getOne($field_id);
wp_enqueue_script('utils');
wp_enqueue_style('formidable-admin', FrmAppHelper::plugin_url() . '/css/frm_admin.css');
FrmAppHelper::load_admin_wide_js();
include FrmAppHelper::plugin_path() . '/classes/views/frm-fields/import_choices.php';
wp_die();
}