Reference: http://agiletoolkit.org/doc/ref ==ATK4=================================================== This file is part of Agile Toolkit 4 http://agiletoolkit.org/ (c) 2008-2013 Agile Toolkit Limited Distributed under Affero General Public License v3 and commercial license. See LICENSE or LICENSE_COM for more information =====================================================ATK4=
Inheritance: extends View
Beispiel #1
0
 /**
  * Initialization
  */
 public function init()
 {
     parent::init();
     $this->addClass('atk-effect-danger');
     $this->template->set('label', $this->app->_('Error') . ': ');
     $this->addIcon('attention');
 }
Beispiel #2
0
 function init()
 {
     parent::init();
     $this->addClass('atk-effect-info');
     $this->template->set('label', $this->app->_('Hint') . ': ');
     $this->addIcon('info');
 }
Beispiel #3
0
 function init()
 {
     parent::init();
     $this->addClass('atk-effect-warning');
     $this->template->set('label', $this->app->_('Warning') . ': ');
     $this->addIcon('attention');
 }
 function init()
 {
     parent::init();
     $this->template->trySet('Icon', '<i class="ui-icon ui-icon-alert"></i>');
     // change default icon
 }
Beispiel #5
0
 /**
  * Initialization
  */
 public function init()
 {
     parent::init();
     $this->addClass('atk-effect-success');
     $this->addIcon('thumbs-up');
 }
Beispiel #6
0
 /**
  * Initialization
  */
 public function init()
 {
     parent::init();
     $this->addClass('atk-effect-info');
     $this->addIcon('info-circled');
 }