本文整理汇总了PHP中GFFormDisplay::get_field方法的典型用法代码示例。如果您正苦于以下问题:PHP GFFormDisplay::get_field方法的具体用法?PHP GFFormDisplay::get_field怎么用?PHP GFFormDisplay::get_field使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GFFormDisplay
的用法示例。
在下文中一共展示了GFFormDisplay::get_field方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: duplicate_field
public static function duplicate_field()
{
check_ajax_referer('rg_duplicate_field', 'rg_duplicate_field');
$source_field_id = absint(rgpost('source_field_id'));
$field_json = stripslashes_deep($_POST['field']);
$field_properties = GFCommon::json_decode($field_json, true);
$field = GF_Fields::create($field_properties);
$form_id = $_GET['id'];
$form = GFFormsModel::get_form_meta($form_id);
require_once GFCommon::get_base_path() . '/form_display.php';
$field_html = GFFormDisplay::get_field($field, '', true, $form);
$args['field'] = $field;
$args['sourceFieldId'] = $source_field_id;
$args['fieldString'] = $field_html;
$args_json = json_encode($args);
die($args_json);
}
示例2: duplicate_field
public static function duplicate_field()
{
check_ajax_referer("rg_duplicate_field", "rg_duplicate_field");
$source_field_id = rgpost('source_field_id');
$field_json = stripslashes_deep($_POST["field"]);
$field = GFCommon::json_decode($field_json, true);
require_once GFCommon::get_base_path() . "/form_display.php";
$field_html = GFFormDisplay::get_field($field, "", true);
$field_html = str_replace("\n", "\\n", $field_html);
$field_html = str_replace('"', '\\"', $field_html);
die("{'field' : {$field_json}, sourceFieldId: {$source_field_id}, 'fieldString' : \"{$field_html}\"}");
}
示例3: duplicate_field
public static function duplicate_field()
{
check_ajax_referer("rg_duplicate_field", "rg_duplicate_field");
$source_field_id = rgpost('source_field_id');
$field_json = stripslashes_deep($_POST["field"]);
$field = GFCommon::json_decode($field_json, true);
require_once GFCommon::get_base_path() . "/form_display.php";
$field_html = GFFormDisplay::get_field($field, "", true);
die("EndDuplicateField({$field_json}, \"{$field_html}\", {$source_field_id});");
}
示例4: add_field
public static function add_field()
{
check_ajax_referer("rg_add_field", "rg_add_field");
$field_json = stripslashes_deep($_POST["field"]);
$field = GFCommon::json_decode($field_json, true);
require_once GFCommon::get_base_path() . "/form_display.php";
$field_html = GFFormDisplay::get_field($field, "", true);
die("EndAddField({$field_json}, \"{$field_html}\");");
}