当前位置: 首页>>代码示例>>PHP>>正文


PHP Button::property方法代码示例

本文整理汇总了PHP中Button::property方法的典型用法代码示例。如果您正苦于以下问题:PHP Button::property方法的具体用法?PHP Button::property怎么用?PHP Button::property使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Button的用法示例。


在下文中一共展示了Button::property方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: get_button_styling

     * @param  string $color
     * @return array
     */
    public function get_button_styling($size, $autowidth, $style, $format, $color)
    {
        return array('size' => ($size == 'default' ? get_option('podlove_subscribe_button_default_size', $size) : $size) . self::interpret_autowidth_attribute($autowidth), 'style' => $style == 'default' ? get_option('podlove_subscribe_button_default_style', $style) : $style, 'format' => $format == 'default' ? get_option('podlove_subscribe_button_default_format', $format) : $format, 'color' => isset($color) ? $color : get_option('podlove_subscribe_button_default_color', $color), 'json-data' => 'podcastData' . $this->id);
    }
    /**
     * Helper function to interpret the given $autowidth value correctly
     * @param  string $autowidth
     * @return string
     */
    private static function interpret_autowidth_attribute($autowidth)
    {
        if ($autowidth == 'default' && get_option('podlove_subscribe_button_default_autowidth') !== 'on') {
            return '';
        }
        if ($autowidth !== 'default' && $autowidth !== 'on') {
            return '';
        }
        return ' auto';
    }
}
Button::property('id', 'INT NOT NULL AUTO_INCREMENT PRIMARY KEY');
Button::property('name', 'VARCHAR(255)');
Button::property('title', 'VARCHAR(255)');
Button::property('subtitle', 'VARCHAR(255)');
Button::property('description', 'TEXT');
Button::property('cover', 'VARCHAR(255)');
Button::property('feeds', 'TEXT');
开发者ID:podlove,项目名称:podlove-subscribe-button-wp-plugin,代码行数:30,代码来源:button.php


注:本文中的Button::property方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。