diff options
author | thomascube <thomas@roundcube.net> | 2008-06-20 10:40:01 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-06-20 10:40:01 +0000 |
commit | c719f3c1e06c00fa4723f2f1298b3c94a1bec7e7 (patch) | |
tree | b343f67ba679e5761c6b27e2cb398de0e6a83a2d /program/include/rcube_json_output.php | |
parent | 4e59f63323341b546eaf0dddbb23f38128d7fb14 (diff) |
Store compose parameters in session and redirect to a unique URL
Diffstat (limited to 'program/include/rcube_json_output.php')
-rw-r--r-- | program/include/rcube_json_output.php | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/program/include/rcube_json_output.php b/program/include/rcube_json_output.php index 678b1948a..2f65c19e9 100644 --- a/program/include/rcube_json_output.php +++ b/program/include/rcube_json_output.php @@ -58,12 +58,14 @@ class rcube_json_output } /** - * @ignore + * Issue command to set page title + * + * @param string New page title */ public function set_pagetitle($title) { - $name = $this->config->get('product_name'); - $this->command('set_pagetitle', JQ(empty($name) ? $title : $name.' :: '.$title)); + $name = $this->config->get('product_name'); + $this->command('set_pagetitle', JQ(empty($name) ? $title : $name.' :: '.$title)); } /** @@ -161,6 +163,19 @@ class rcube_json_output $this->commands = array(); } + /** + * 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(), $delay = 0) + { + $location = rcmail::get_instance()->url($p); + $this->remote_response("window.setTimeout(\"location.href='{$location}'\", $delay);"); + exit; + } + /** * Send an AJAX response to the client. |