本文整理汇总了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');