本文整理匯總了PHP中Fields::tab_content方法的典型用法代碼示例。如果您正苦於以下問題:PHP Fields::tab_content方法的具體用法?PHP Fields::tab_content怎麽用?PHP Fields::tab_content使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Fields
的用法示例。
在下文中一共展示了Fields::tab_content方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Fields
/**
*
* Layout: Post List
*
* @author Michael W. Delaney
* @since 1.0
*
* List of posts
*/
function post_list()
{
$FCBFields = new Fields(__FUNCTION__);
$FCBRepeaters = new Repeaters(__FUNCTION__);
$FCBFlexibleContent = new FlexibleContent(__FUNCTION__);
return array('order' => '500', 'layout' => array('key' => $this->key . __FUNCTION__, 'name' => 'post_list', 'label' => 'Post List', 'display' => 'block', 'sub_fields' => array($FCBFields->title(), $FCBFields->navigation_title(), $FCBFields->tab_content(), $FCBFields->content(), $FCBFields->tab_post_list(), $FCBFields->posts_per_page(), $FCBFields->show_author(), $FCBFields->show_date(), $FCBFields->show_featured_image(), $FCBFields->category(), $FCBFields->tab_background(), $FCBFields->background_image(), $FCBFields->background_color(), $FCBFields->background_color_placeholder(), $FCBFields->theme_color(), $FCBFields->choose_color(), $FCBFields->tab_cta(), $FCBFlexibleContent->cta(), $FCBFields->tab_dev(), $FCBFields->dev_block_message(), $FCBRepeaters->block_data_attributes(), $FCBFields->block_classes(), $FCBFields->tab_endpoint())));
}
示例2: slides
/**
*
* Repeater: Slides
*
* @author Michael W. Delaney
* @since 1.0
*
* Repeater field for slides
*/
function slides()
{
$FCBRepeaterFields = new Fields($this->layout, __FUNCTION__);
$FCBRepeaterFlexibleContent = new FlexibleContent(__FUNCTION__);
return array('key' => $this->key . __FUNCTION__, 'label' => 'Slides', 'name' => 'slides', 'type' => 'repeater', 'instructions' => '', 'required' => 0, 'conditional_logic' => 0, 'wrapper' => array('width' => '', 'class' => '', 'id' => ''), 'collapsed' => 'field_573b50b3ebf4d', 'min' => '', 'max' => '', 'layout' => 'block', 'button_label' => 'Add Slide', 'sub_fields' => array($FCBRepeaterFields->title(), $FCBRepeaterFields->tab_content(), $FCBRepeaterFields->content(), $FCBRepeaterFields->tab_cta(), $FCBRepeaterFlexibleContent->cta('slide'), $FCBRepeaterFields->tab_media(), $FCBRepeaterFlexibleContent->media(), $FCBRepeaterFields->tab_background(), $FCBRepeaterFields->background_image(), $FCBRepeaterFields->background_color(), $FCBRepeaterFields->background_color_placeholder(), $FCBRepeaterFields->theme_color(), $FCBRepeaterFields->choose_color()));
}