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


PHP ui::recognized_font_styles方法代碼示例

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


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

示例1: typography

 public function typography($args)
 {
     extract($args);
     $selected_value = is_array(option::get($id)) ? option::get($id) : array();
     $out .= '<div class="zoom-typography">';
     $out .= "<label>{$name}</label>";
     /* fonts */
     $font_families = ui::recognized_font_families($id);
     $google_font_families = ui::recognized_google_webfonts_families($id);
     $font_family = isset($selected_value['font-family']) ? $selected_value['font-family'] : '';
     $out .= '<select name="' . $id . '[font-family]" id="' . $id . '-family" class="zoom-typography-family">';
     $out .= '<optgroup label="Web Safe Fonts">';
     $out .= '<option value="">font-family</option>';
     foreach ($font_families as $key => $value) {
         $out .= '<option value="' . esc_attr($key) . '" ' . selected($font_family, $key, false) . '>' . esc_attr($value) . '</option>';
     }
     $out .= '</optgroup>';
     $out .= '<optgroup label="Google Web Fonts">';
     foreach ($google_font_families as $value) {
         if (isset($value['separator'])) {
             $out .= '<option value="" disabled="disabled">' . $value['separator'] . '</option>';
             continue;
         }
         $key = str_replace(' ', '-', strtolower($value['name']));
         $out .= '<option value="' . esc_attr($key) . '" ' . selected($font_family, $key, false) . '>' . esc_attr($value['name']) . '</option>';
     }
     $out .= '</optgroup>';
     $out .= '</select>';
     /* style */
     $font_styles = ui::recognized_font_styles($id);
     $font_style = isset($selected_value['font-style']) ? $selected_value['font-style'] : '';
     $out .= '<select name="' . $id . '[font-style]" id="' . $id . '-style" class="zoom-typography-style">';
     $out .= '<option value="">font-style</option>';
     foreach ($font_styles as $key => $value) {
         $out .= '<option value="' . esc_attr($key) . '" ' . selected($font_style, $key, false) . '>' . esc_attr($value) . '</option>';
     }
     $out .= '</select>';
     /* sizing */
     $font_size = isset($selected_value['font-size']) ? $selected_value['font-size'] : '';
     $out .= '<select name="' . $id . '[font-size]" id="' . $id . '-size" class="zoom-typography-size">';
     $out .= '<option value="">size</option>';
     for ($i = 8; $i <= 72; $i++) {
         $size = $i . 'px';
         $out .= '<option value="' . esc_attr($size) . '" ' . selected($font_size, $size, false) . '>' . esc_attr($size) . '</option>';
     }
     $out .= '</select>';
     /* color */
     $font_color = isset($selected_value['font-color']) ? $selected_value['font-color'] : '';
     $out .= '<div class="colorSelector"><div></div></div><input name="' . $id . '[font-color]" id="' . $id . '-color" class="txt input-text input-colourpicker zoom-typography-color" type="text" value="' . $font_color . '"></input>';
     $out .= "<p>{$desc}</p>";
     $out .= '</div><!-- /div.zoom-typography -->';
     return $out;
 }
開發者ID:Bobcatou,項目名稱:thenewreaganvision,代碼行數:53,代碼來源:settings-fields.php


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