Exemple #1
0
 function html_head()
 {
     global $idcounter;
     //allocate ids
     $lid = js_escape($this->listdiv->id_gen());
     $this->button->attributes['onclick'] = 'var div=$i(\'' . $lid . '\');' . "if(div.style.display=='')" . "{" . " div.style.display='none';" . " this.style.backgroundColor='';" . " this.style.color='';" . "}else{" . " div.style.display='';" . " this.style.backgroundColor='black';" . " this.style.color='white';" . "};";
     parent::html_head();
 }
Exemple #2
0
 function html_head()
 {
     global $sql;
     foreach ($sql->querylog as $a) {
         $this->add_row($a);
     }
     dom_div::html_head();
 }
Exemple #3
0
 function html_head()
 {
     if (isset($this->attributes['value'])) {
         $this->text->text = $this->attributes['value'];
         unset($this->attributes['value']);
     }
     if ($this->usevar) {
         $this->text->text = $this->args[$this->context[$this->long_name]['var']];
     }
     parent::html_head();
 }
Exemple #4
0
 function html_head()
 {
     parent::html_head();
     $this->controls->html();
     $this->children->html_head();
 }
Exemple #5
0
 function html_head()
 {
     $dt = explode(' ', $this->args[$this->context[$this->long_name]['var']]);
     $ymd = explode('-', $dt[0]);
     $this->editors['main']->args['main'] = $ymd[2] . "." . $ymd[1] . "." . $ymd[0];
     parent::html_head();
 }