本文整理汇总了PHP中Fields::background_color_placeholder方法的典型用法代码示例。如果您正苦于以下问题:PHP Fields::background_color_placeholder方法的具体用法?PHP Fields::background_color_placeholder怎么用?PHP Fields::background_color_placeholder使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Fields
的用法示例。
在下文中一共展示了Fields::background_color_placeholder方法的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()));
}