Exemplo n.º 1
0
 private function _script()
 {
     if (!$this->_s->isEmail()) {
         throw new Exception('Email invalid.' . "\n");
     }
     $js = new Element('script');
     $js->attr('type', 'text/javascript');
     $script = sprintf($this->_s->getSprintfScript(), $this->_s->getUser(), $this->_s->getDomain(), $this->_s->getUserAtDomain());
     $js->add($script);
     $this->_js = $js;
     return $this;
 }
Exemplo n.º 2
0
Arquivo: Tr.php Projeto: 4app/zuniphp
 public function th($value)
 {
     $e = new Th($value);
     parent::add($e);
     return $e;
 }
Exemplo n.º 3
0
 private function item($value)
 {
     $e = new Li($value);
     parent::add($e);
     return $e;
 }
Exemplo n.º 4
0
 public function __construct($href, $name)
 {
     parent::__construct('a');
     parent::attr('href', $href);
     parent::add($name);
 }
Exemplo n.º 5
0
Arquivo: Th.php Projeto: 4app/zuniphp
 public function __construct($value)
 {
     parent::__construct('th');
     parent::add($value);
 }
Exemplo n.º 6
0
 public function __construct()
 {
     parent::__construct('thead');
 }