本文整理匯總了PHP中FrmFieldsHelper::get_other_field_html_id方法的典型用法代碼示例。如果您正苦於以下問題:PHP FrmFieldsHelper::get_other_field_html_id方法的具體用法?PHP FrmFieldsHelper::get_other_field_html_id怎麽用?PHP FrmFieldsHelper::get_other_field_html_id使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類FrmFieldsHelper
的用法示例。
在下文中一共展示了FrmFieldsHelper::get_other_field_html_id方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: insert_hidden_other_fields
/**
* Insert hidden Other fields
*
* @since 2.0.8
* @param array $field
* @param string|int|boolean $opt_key
* @param string $html_id
*/
private static function insert_hidden_other_fields($field, $opt_key)
{
$other_id = FrmFieldsHelper::get_other_field_html_id($field['original_type'], $field['html_id'], $opt_key);
// Checkbox and multi-select dropdown fields
if ($opt_key && !is_numeric($opt_key) && isset($_POST['item_meta']['other'][$field['id']][$opt_key]) && $_POST['item_meta']['other'][$field['id']][$opt_key]) {
$posted_val = stripslashes_deep($_POST['item_meta']['other'][$field['id']][$opt_key]);
?>
<input type="hidden" name="item_meta[other][<?php
echo esc_attr($field['id']);
?>
][<?php
echo esc_attr($opt_key);
?>
]" id="<?php
echo esc_attr($other_id);
?>
" value="<?php
echo esc_attr($posted_val);
?>
" />
<?php
// Radio fields and regular dropdowns
} else {
if (!is_array($field['value']) && !is_array($_POST['item_meta']['other'][$field['id']])) {
$posted_val = stripslashes_deep($_POST['item_meta']['other'][$field['id']]);
?>
<input type="hidden" name="item_meta[other][<?php
echo esc_attr($field['id']);
?>
]" id="<?php
echo esc_attr($other_id);
?>
" value="<?php
echo esc_attr($posted_val);
?>
" />
<?php
}
}
}