| | |
| | | <?php |
| | | |
| | | /* |
| | | /** |
| | | +-----------------------------------------------------------------------+ |
| | | | program/include/rcmail_output_json.php | |
| | | | | |
| | |
| | | +-----------------------------------------------------------------------+ |
| | | */ |
| | | |
| | | |
| | | /** |
| | | * View class to produce JSON responses |
| | | * |
| | |
| | | */ |
| | | class rcmail_output_json extends rcmail_output |
| | | { |
| | | protected $texts = array(); |
| | | protected $commands = array(); |
| | | protected $texts = array(); |
| | | protected $commands = array(); |
| | | protected $callbacks = array(); |
| | | protected $message = null; |
| | | protected $message = null; |
| | | |
| | | public $type = 'js'; |
| | | public $type = 'js'; |
| | | public $ajax_call = true; |
| | | |
| | | |
| | |
| | | else |
| | | $name = $this->config->get('product_name'); |
| | | |
| | | $this->command('set_pagetitle', empty($name) ? $title : $name.' :: '.$title); |
| | | $this->command('set_pagetitle', empty($name) ? $title : $name . ' :: ' . $title); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Register a template object handler |
| | |
| | | // ignore |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Register a list of template object handlers |
| | | * |
| | |
| | | { |
| | | // ignore |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Call a client method |
| | |
| | | $this->commands[] = $cmd; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Add a localized label to the client environment |
| | | */ |
| | |
| | | $this->texts[$name] = $this->app->gettext($name); |
| | | } |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Invoke display_message command |
| | |
| | | } |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Delete all stored env variables and commands |
| | | */ |
| | | public function reset() |
| | | { |
| | | parent::reset(); |
| | | $this->texts = array(); |
| | | $this->texts = array(); |
| | | $this->commands = array(); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Redirect to a certain url |
| | |
| | | exit; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Send an AJAX response to the client. |
| | | */ |
| | |
| | | $this->remote_response(); |
| | | exit; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Show error page and terminate script execution |
| | |
| | | $this->remote_response(); |
| | | exit; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Send an AJAX response with executable JS code |
| | |
| | | |
| | | echo self::json_serialize($response); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Return executable javascript code for all registered commands |