| | |
| | | { |
| | | var $app; |
| | | var $config; |
| | | var $task = ''; |
| | | var $framed = false; |
| | | var $pagetitle = ''; |
| | | var $env = array(); |
| | |
| | | $this->config = $this->app->config->all(); |
| | | |
| | | //$this->framed = $framed; |
| | | $this->task = $task; |
| | | $this->set_env('task', $task); |
| | | |
| | | // load the correct skin (in case user-defined) |
| | | $this->set_skin($this->config['skin']); |
| | | |
| | | // add common javascripts |
| | | $javascript = 'var '.JS_OBJECT_NAME.' = new rcube_webmail();'; |
| | |
| | | $this->pagetitle = $title; |
| | | } |
| | | |
| | | /** |
| | | * Set skin |
| | | */ |
| | | public function set_skin($skin) |
| | | { |
| | | if (!empty($skin) && is_dir('skins/'.$skin) && is_readable('skins/'.$skin)) |
| | | $skin_path = 'skins/'.$skin; |
| | | else |
| | | $skin_path = $this->config['skin_path'] ? $this->config['skin_path'] : 'skins/default'; |
| | | |
| | | $this->app->config->set('skin_path', $skin_path); |
| | | $this->config['skin_path'] = $skin_path; |
| | | } |
| | | |
| | | /** |
| | | * Check if a specific template exists |
| | | * |
| | | * @param string Template name |
| | | * @return boolean True if template exists |
| | | */ |
| | | public function template_exists($name) |
| | | { |
| | | $filename = $this->config['skin_path'] . '/templates/' . $name . '.html'; |
| | | |
| | | return (is_file($filename) && is_readable($filename)); |
| | | } |
| | | |
| | | /** |
| | | * Register a template object handler |
| | |
| | | * @uses self::$js_commands |
| | | * @uses self::$object_handlers |
| | | */ |
| | | public public function reset() |
| | | public function reset() |
| | | { |
| | | $this->env = array(); |
| | | $this->js_env = array(); |
| | | $this->js_commands = array(); |
| | | $this->object_handlers = array(); |
| | | parent::reset(); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Redirect to a certain url |
| | | * |
| | | * @param mixed Either a string with the action or url parameters as key-value pairs |
| | | * @see rcmail::url() |
| | | */ |
| | | public function redirect($p = array()) |
| | | { |
| | | $location = $this->app->url($p); |
| | | header('Location: ' . $location); |
| | | exit; |
| | | } |
| | | |
| | | |
| | |
| | | return Q($name); |
| | | } |
| | | if ($object=='version') { |
| | | return (string)RCMAIL_VERSION; |
| | | $ver = (string)RCMAIL_VERSION; |
| | | if (is_file(INSTALL_PATH . '.svn/entries')) { |
| | | if (preg_match('/Revision:\s(\d+)/', @shell_exec('svn info'), $regs)) |
| | | $ver .= ' [SVN r'.$regs[1].']'; |
| | | } |
| | | return $ver; |
| | | } |
| | | if ($object=='pagetitle') { |
| | | $task = $this->task; |
| | | $task = $this->env['task']; |
| | | $title = !empty($this->config['product_name']) ? $this->config['product_name'].' :: ' : ''; |
| | | |
| | | if (!empty($this->pagetitle)) { |
| | |
| | | array( |
| | | 'style', 'class', 'id', 'width', |
| | | 'height', 'border', 'hspace', |
| | | 'vspace', 'align', 'alt', |
| | | 'vspace', 'align', 'alt', 'tabindex' |
| | | ) |
| | | ); |
| | | $btn_content = sprintf('<img src="%s"%s />', $this->abs_url($attrib['image']), $attrib_str); |
| | |
| | | } |
| | | else if ($attrib['type']=='link') { |
| | | $btn_content = $attrib['label'] ? $attrib['label'] : $attrib['command']; |
| | | $link_attrib = array('href', 'onclick', 'title', 'id', 'class', 'style'); |
| | | $link_attrib = array('href', 'onclick', 'title', 'id', 'class', 'style', 'tabindex'); |
| | | } |
| | | else if ($attrib['type']=='input') { |
| | | $attrib['type'] = 'button'; |
| | |
| | | $attrib, |
| | | array( |
| | | 'type', 'value', 'onclick', |
| | | 'id', 'class', 'style' |
| | | 'id', 'class', 'style', 'tabindex' |
| | | ) |
| | | ); |
| | | $out = sprintf('<input%s disabled="disabled" />', $attrib_str); |