45 lines
930 B
PHP
45 lines
930 B
PHP
<?php
|
|
/**
|
|
* Buttonset control class.
|
|
*
|
|
* @package ButterBean
|
|
* @author Justin Tadlock <justin@justintadlock.com>
|
|
* @copyright Copyright (c) 2015-2016, Justin Tadlock
|
|
* @link https://github.com/justintadlock/butterbean
|
|
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
*/
|
|
|
|
/**
|
|
* Buttonset control class.
|
|
*
|
|
* @since 1.0.0
|
|
* @access public
|
|
*/
|
|
class OceanWP_ButterBean_Control_Buttonset extends OceanWP_ButterBean_Control {
|
|
|
|
/**
|
|
* The type of control.
|
|
*
|
|
* @since 1.0.0
|
|
* @access public
|
|
* @var string
|
|
*/
|
|
public $type = 'buttonset';
|
|
|
|
/**
|
|
* Get the value for the setting.
|
|
*
|
|
* @since 1.0.0
|
|
* @access public
|
|
* @param string $setting
|
|
* @return mixed
|
|
*/
|
|
public function get_value( $setting = 'default' ) {
|
|
|
|
$value = parent::get_value( $setting );
|
|
$object = $this->get_setting( $setting );
|
|
|
|
return ! $value && $object ? $object->default : $value;
|
|
}
|
|
}
|