/**
  * Executes the widget.
  */
 public function init()
 {
     parent::init();
     $this->initOptions();
     ob_start();
     ob_implicit_flush(false);
 }
Example #2
0
 /**
  * Initializes the widget.
  */
 public function init()
 {
     parent::init();
     Html::addCssClass($this->options, 'note note-' . $this->type);
     echo Html::beginTag('div', $this->options);
     echo $this->renderTitle();
 }
Example #3
0
 /**
  * Initializes the widget.
  */
 public function init()
 {
     parent::init();
     Html::addCssClass($this->options, trim(sprintf('panel %s', $this->type)));
     echo Html::beginTag('div', $this->options);
     $this->_renderTitle();
     Html::addCssClass($this->bodyOptions, 'panel-body');
     echo Html::beginTag('div', $this->bodyOptions);
 }
Example #4
0
 /**
  * Initializes the widget.
  */
 public function init()
 {
     parent::init();
     $this->initOptions();
     echo $this->renderToggleButton() . "\n";
     echo Html::beginTag('div', $this->options) . "\n";
     echo $this->renderHeader() . "\n";
     echo $this->renderBodyBegin() . "\n";
 }
Example #5
0
 /**
  * Initializes the widget.
  */
 public function init()
 {
     if (!$this->hasModel() && $this->name === null) {
         throw new InvalidConfigException("Either 'name', or 'model' and 'attribute' properties must be specified.");
     }
     if (!isset($this->options['id'])) {
         $this->options['id'] = $this->hasModel() ? Html::getInputId($this->model, $this->attribute) : $this->getId();
     }
     parent::init();
 }
Example #6
0
 /**
  * Initializes the widget.
  */
 public function init()
 {
     parent::init();
     Html::addCssClass($this->options, 'panel-group accordion');
 }
Example #7
0
 /**
  * Initializes the widget.
  */
 public function init()
 {
     parent::init();
     Html::addCssClass($this->options, trim(sprintf('portlet %s %s', $this->type, $this->background)));
     echo Html::beginTag('div', $this->options);
     $this->_renderTitle();
     Html::addCssClass($this->bodyOptions, 'portlet-body');
     echo Html::beginTag('div', $this->bodyOptions);
     $this->_renderScrollerBegin();
 }