當前位置: 首頁>>代碼示例>>PHP>>正文


PHP FrmFieldsHelper::get_other_val方法代碼示例

本文整理匯總了PHP中FrmFieldsHelper::get_other_val方法的典型用法代碼示例。如果您正苦於以下問題:PHP FrmFieldsHelper::get_other_val方法的具體用法?PHP FrmFieldsHelper::get_other_val怎麽用?PHP FrmFieldsHelper::get_other_val使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在FrmFieldsHelper的用法示例。


在下文中一共展示了FrmFieldsHelper::get_other_val方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: esc_attr

                    echo FrmFieldsHelper::dropdown_categories(array('name' => $field_name, 'field' => $field));
                } else {
                    ?>
	<select name="<?php 
                    echo esc_attr($field_name) . (FrmField::is_option_true($field, 'multiple') ? '[]' : '');
                    ?>
" <?php 
                    echo FrmField::is_option_true($field, 'size') ? 'class="auto_width"' : '';
                    echo FrmField::is_option_true($field, 'multiple') ? ' multiple="multiple"' : '';
                    ?>
 >
		<?php 
                    foreach ($field['options'] as $opt_key => $opt) {
                        $field_val = apply_filters('frm_field_value_saved', $opt, $opt_key, $field);
                        $opt = apply_filters('frm_field_label_seen', $opt, $opt_key, $field);
                        $selected = $field['default_value'] == $field_val || FrmFieldsHelper::get_other_val(array('opt_key', 'field')) ? ' selected="selected"' : '';
                        ?>
            <option value="<?php 
                        echo esc_attr($field_val);
                        ?>
"<?php 
                        echo $selected;
                        ?>
><?php 
                        echo esc_html($opt);
                        ?>
 </option>
        <?php 
                    }
                    ?>
    </select>
開發者ID:mazykin46,項目名稱:portfolio,代碼行數:31,代碼來源:show-build.php

示例2: get_other_val

 /**
  * Get value that belongs in "Other" text box
  *
  * @since 2.0
  *
  * @param string $opt_key
  * @param array $field
  * @return string $other_val
  */
 public static function get_other_val($opt_key, $field, $parent = false, $pointer = false)
 {
     _deprecated_function(__FUNCTION__, '2.0.6', 'FrmFieldsHelper::get_other_val');
     return FrmFieldsHelper::get_other_val(compact('opt_key', 'field', 'parent', 'pointer'));
 }
開發者ID:EliasGoldberg,項目名稱:troop-sim,代碼行數:14,代碼來源:FrmAppHelper.php

示例3: foreach

<?php

if (!is_array($field['options'])) {
    return;
}
foreach ($field['options'] as $opt_key => $opt) {
    $field_val = apply_filters('frm_field_value_saved', $opt, $opt_key, $field);
    $opt = apply_filters('frm_field_label_seen', $opt, $opt_key, $field);
    // Get string for Other text field, if needed
    $other_val = FrmFieldsHelper::get_other_val(compact('opt_key', 'field'));
    $checked = $other_val || isset($field['value']) && (!is_array($field['value']) && $field['value'] == $field_val || is_array($field['value']) && in_array($field_val, $field['value'])) ? ' checked="checked"' : '';
    if (FrmFieldsHelper::is_other_opt($opt_key)) {
        include FrmAppHelper::plugin_path() . '/pro/classes/views/frmpro-fields/other-option.php';
    } else {
        include FrmAppHelper::plugin_path() . '/classes/views/frm-fields/single-option.php';
    }
    unset($checked, $other_val);
}
開發者ID:mazykin46,項目名稱:portfolio,代碼行數:18,代碼來源:radio.php


注:本文中的FrmFieldsHelper::get_other_val方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。