Example #1
0
 function __construct($args)
 {
     parent::__construct($args);
     $this->arg('submit', null, $args);
     $type = 'button';
     if ($this->submit) {
         $type = 'submit';
     }
     $this->addSelector('type', $type);
 }
Example #2
0
 function __construct($args)
 {
     parent::__construct($args);
     $this->arg('rel', null, $args, 'tooltip');
     $this->arg('raw', null, $args, false);
     //Bootstrap parameters
     $this->arg('animation', null, $args, true);
     $this->arg('placement', null, $args, 'top');
     $this->arg('selector', null, $args);
     $this->arg('trigger', null, $args, 'hover');
     $this->arg('delay', null, $args, 0);
     $this->arg('container', null, $args);
     $this->arg('contents', null, $args);
 }
Example #3
0
 function __construct($args)
 {
     parent::__construct($args);
 }
Example #4
0
 function __construct($args)
 {
     parent::__construct($args);
     $this->arg('active', null, $args, false);
 }