Kronolith_Calendar::background PHP Метод

background() публичный Метод

Returns the background color for this calendar.
public background ( ) : string
Результат string A HTML color code.
    public function background()
    {
        return isset($this->_background) ? $this->_background : '#dddddd';
    }

Usage Example

Пример #1
0
 /**
  * Returns the background color for this calendar.
  *
  * @return string  A HTML color code.
  */
 public function background()
 {
     return empty($this->_color) ? parent::background() : $this->_color;
 }
All Usage Examples Of Kronolith_Calendar::background