| | |
| | | |
| | | $this->app = rcmail::get_instance(); |
| | | $this->config = $this->app->config->all(); |
| | | $this->browser = new rcube_browser(); |
| | | |
| | | //$this->framed = $framed; |
| | | $this->set_env('task', $task); |
| | |
| | | return ''; |
| | | } |
| | | |
| | | $browser = new rcube_browser(); |
| | | |
| | | // try to find out the button type |
| | | if ($attrib['type']) { |
| | | $attrib['type'] = strtolower($attrib['type']); |
| | |
| | | $attrib['alt'] = Q(rcube_label($attrib['alt'])); |
| | | } |
| | | // set title to alt attribute for IE browsers |
| | | if ($browser->ie && $attrib['title'] && !$attrib['alt']) { |
| | | if ($this->browser->ie && $attrib['title'] && !$attrib['alt']) { |
| | | $attrib['alt'] = $attrib['title']; |
| | | unset($attrib['title']); |
| | | } |
| | |
| | | if (empty($attrib['id'])) { |
| | | $attrib['id'] = 'rcmqsearchbox'; |
| | | } |
| | | if ($attrib['type'] == 'search' && !$this->browser->khtml) { |
| | | unset($attrib['type'], $attrib['results']); |
| | | } |
| | | |
| | | $input_q = new html_inputfield($attrib); |
| | | $out = $input_q->show(); |
| | | |