本文整理汇总了PHP中td_panel_generator::box_end方法的典型用法代码示例。如果您正苦于以下问题:PHP td_panel_generator::box_end方法的具体用法?PHP td_panel_generator::box_end怎么用?PHP td_panel_generator::box_end使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类td_panel_generator
的用法示例。
在下文中一共展示了td_panel_generator::box_end方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: td_custom_typology_generate_font_controls
public function td_custom_typology_generate_font_controls()
{
//insert separator after this section numbers from td_fonts::$typography_sections. the counting of td_fonts::$typography_sections starts from 1
$td_section_separator_array = array(0 => 'Post Page', 16 => 'Slides', 19 => 'Menu`s', 23 => 'Pages', 27 => 'Tabs');
$td_section_counter = 0;
foreach (td_fonts::$typography_sections as $font_section_settings_id => $font_section_name) {
//create the section separators
if (array_key_exists($td_section_counter, $td_section_separator_array)) {
echo '<hr>
<div class="td-section-separator">' . $td_section_separator_array[$td_section_counter] . '</div>';
}
echo td_panel_generator::box_start($font_section_name, false);
?>
<div class="td-box-row">
<div class="td-box-description">
<span class="td-box-title td-title-on-row">FONT FAMILY</span>
</div>
<div class="td-box-control-full">
<?php
echo td_panel_generator::dropdown(array('ds' => 'td_fonts', 'item_id' => $font_section_settings_id, 'option_id' => 'font_family', 'values' => $this->td_typology_fonts_array));
?>
</div>
</div>
<div class="td-box-row">
<div class="td-box-description">
<span class="td-box-title td-title-on-row">FONT SIZE</span>
</div>
<div class="td-box-control-full">
<?php
echo td_panel_generator::dropdown(array('ds' => 'td_fonts', 'item_id' => $font_section_settings_id, 'option_id' => 'font_size', 'values' => $this->td_font_size_list));
?>
</div>
</div>
<div class="td-box-row">
<div class="td-box-description">
<span class="td-box-title td-title-on-row">LINE HEIGHT</span>
</div>
<div class="td-box-control-full">
<?php
echo td_panel_generator::dropdown(array('ds' => 'td_fonts', 'item_id' => $font_section_settings_id, 'option_id' => 'line_height', 'values' => $this->td_line_height_list));
?>
</div>
</div>
<div class="td-box-row">
<div class="td-box-description">
<span class="td-box-title td-title-on-row">FONT STYLE</span>
</div>
<div class="td-box-control-full">
<?php
echo td_panel_generator::dropdown(array('ds' => 'td_fonts', 'item_id' => $font_section_settings_id, 'option_id' => 'font_style', 'values' => $this->td_font_style_list));
?>
</div>
</div>
<div class="td-box-row">
<div class="td-box-description">
<span class="td-box-title td-title-on-row">FONT WEIGHT</span>
<p>Default font weight = normal</p>
</div>
<div class="td-box-control-full">
<?php
echo td_panel_generator::dropdown(array('ds' => 'td_fonts', 'item_id' => $font_section_settings_id, 'option_id' => 'font_weight', 'values' => $this->td_font_weight));
?>
</div>
</div>
<div class="td-box-row">
<div class="td-box-description">
<span class="td-box-title td-title-on-row">TEXT TRANSFORM</span>
</div>
<div class="td-box-control-full">
<?php
echo td_panel_generator::dropdown(array('ds' => 'td_fonts', 'item_id' => $font_section_settings_id, 'option_id' => 'text_transform', 'values' => $this->td_text_transform));
?>
</div>
</div>
<div class="td-box-row">
<div class="td-box-description">
<span class="td-box-title td-title-on-row">TEXT COLOR</span>
</div>
<div class="td-box-control-full">
<?php
echo td_panel_generator::color_piker(array('ds' => 'td_fonts', 'item_id' => $font_section_settings_id, 'option_id' => 'color', 'default_color' => ''));
?>
</div>
</div>
<?php
echo td_panel_generator::box_end();
//.........这里部分代码省略.........
示例2: array
<!-- FOOTER bottom text color -->
<div class="td-box-row">
<div class="td-box-description">
<span class="td-box-title">TEXT COLOR</span>
<p>Select sub footer bottom text color</p>
</div>
<div class="td-box-control-full">
<?php
echo td_panel_generator::color_picker(array('ds' => 'td_option', 'option_id' => 'tds_footer_bottom_text_color', 'default_color' => '#cccccc'));
?>
</div>
</div>
<?php
echo td_panel_generator::box_end();
?>
<hr>
<div class="td-section-separator">Content</div>
<!-- POSTS PAGE -->
<?php
echo td_panel_generator::ajax_box('Posts', array('td_ajax_calling_file' => basename(__FILE__), 'td_ajax_box_id' => 'td_posts'));
?>
示例3: render_categories_form
//.........这里部分代码省略.........
</div>
<div class="td-box-control-full td-panel-sidebar-pos">
<div class="td-display-inline-block">
<?php
echo td_panel_generator::visual_select_o(array('ds' => 'td_category', 'item_id' => $category_id, 'option_id' => 'tdc_sidebar_pos', 'values' => array(array('text' => '', 'title' => '', 'val' => '', 'img' => get_template_directory_uri() . '/wp-admin/images/panel/sidebar-default.png'), array('text' => '', 'title' => '', 'val' => 'sidebar_left', 'img' => get_template_directory_uri() . '/wp-admin/images/panel/sidebar-left.png'), array('text' => '', 'title' => '', 'val' => 'no_sidebar', 'img' => get_template_directory_uri() . '/wp-admin/images/panel/sidebar-full.png'), array('text' => '', 'title' => '', 'val' => 'sidebar_right', 'img' => get_template_directory_uri() . '/wp-admin/images/panel/sidebar-right.png'))));
?>
<div class="td-panel-control-comment td-text-align-right">Select sidebar position</div>
</div>
<div class="td-display-inline-block td_sidebars_pulldown_align">
<?php
echo td_panel_generator::sidebar_pulldown(array('ds' => 'td_category', 'item_id' => $category_id, 'option_id' => 'tdc_sidebar_name'));
?>
<div class="td-panel-control-comment td-text-align-right">Create or select an existing sidebar</div>
</div>
</div>
</div>
<!-- Show Featured slider -->
<div class="td-box-row">
<div class="td-box-description">
<span class="td-box-title">SHOW FEATURED SLIDER</span>
<p>Enable or disable the featured slider (only posts that are in the Featured category are showed in slider)</p>
</div>
<div class="td-box-control-full">
<?php
echo td_panel_generator::checkbox(array('ds' => 'td_category', 'item_id' => $category_id, 'option_id' => 'tdc_slider', 'true_value' => '', 'false_value' => 'yes'));
?>
</div>
</div>
<!-- Category color -->
<div class="td-box-row">
<div class="td-box-description">
<span class="td-box-title">CATEGORY TAG COLOR ON POST PAGE</span>
<p>Pick a color for this category tag on post page</p>
</div>
<div class="td-box-control-full">
<?php
echo td_panel_generator::color_piker(array('ds' => 'td_category', 'item_id' => $category_id, 'option_id' => 'tdc_color', 'default_color' => ''));
?>
</div>
</div>
<!-- BACKGROUND UPLOAD -->
<div class="td-box-row">
<div class="td-box-description">
<span class="td-box-title">BACKGROUND UPLOAD</span>
<p>Upload your logo (300 x 100px) .png</p>
</div>
<div class="td-box-control-full">
<?php
echo td_panel_generator::upload_image(array('ds' => 'td_category', 'item_id' => $category_id, 'option_id' => 'tdc_image'));
?>
</div>
</div>
<!-- BACKGROUND STYLE -->
<div class="td-box-row">
<div class="td-box-description">
<span class="td-box-title">BACKGROUND STYLE</span>
<p>How the background will be dispalyed</p>
</div>
<div class="td-box-control-full">
<?php
echo td_panel_generator::radio_button_control(array('ds' => 'td_category', 'item_id' => $category_id, 'option_id' => 'tdc_bg_repeat', 'values' => array(array('text' => 'Default', 'val' => ''), array('text' => 'Stretch', 'val' => 'stretch'), array('text' => 'Tiled', 'val' => 'tile'))));
?>
</div>
</div>
<!-- Background color -->
<div class="td-box-row">
<div class="td-box-description">
<span class="td-box-title">BACKGROUND COLOR</span>
<p>Use a solid color instead of an image</p>
</div>
<div class="td-box-control-full">
<?php
echo td_panel_generator::color_piker(array('ds' => 'td_category', 'item_id' => $category_id, 'option_id' => 'tdc_bg_color', 'default_color' => ''));
?>
</div>
</div>
<!-- Hide category tag on post -->
<div class="td-box-row">
<div class="td-box-description">
<span class="td-box-title">HIDE CATEGORY TAG ON POST</span>
<p>Show or hide category tags on post page</p>
</div>
<div class="td-box-control-full">
<?php
echo td_panel_generator::checkbox(array('ds' => 'td_category', 'item_id' => $category_id, 'option_id' => 'tdc_hide_on_post', 'true_value' => 'hide', 'false_value' => ''));
?>
</div>
</div>
<?php
echo td_panel_generator::box_end();
}
//end foreach
}