Changeset 4091 in subversion
- Timestamp:
- Oct 14, 2010 1:02:25 PM (3 years ago)
- Location:
- trunk/roundcubemail/program/include
- Files:
-
- 4 edited
-
rcube_json_output.php (modified) (2 diffs)
-
rcube_plugin.php (modified) (1 diff)
-
rcube_plugin_api.php (modified) (3 diffs)
-
rcube_template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/include/rcube_json_output.php
r4083 r4091 36 36 private $config; 37 37 private $charset = RCMAIL_CHARSET; 38 private $env = array();39 38 private $texts = array(); 40 39 private $commands = array(); … … 43 42 44 43 public $browser; 44 public $env = array(); 45 45 public $type = 'js'; 46 46 public $ajax_call = true; -
trunk/roundcubemail/program/include/rcube_plugin.php
r4015 r4091 248 248 protected function local_skin_path() 249 249 { 250 $skin_path = 'skins/'.$this->api-> output->config['skin'];250 $skin_path = 'skins/'.$this->api->config->get('skin'); 251 251 if (!is_dir(realpath(slashify($this->home) . $skin_path))) 252 252 $skin_path = 'skins/default'; -
trunk/roundcubemail/program/include/rcube_plugin_api.php
r4015 r4091 32 32 public $url = 'plugins/'; 33 33 public $output; 34 public $config; 34 35 35 36 public $handlers = array(); … … 40 41 private $objectsmap = array(); 41 42 private $template_contents = array(); 42 43 43 private $required_plugins = array('filesystem_attachments'); 44 44 private $active_hook = false; … … 108 108 $rcmail = rcmail::get_instance(); 109 109 $this->output = $rcmail->output; 110 $this->config = $rcmail->config; 110 111 111 112 $plugins_dir = dir($this->dir); -
trunk/roundcubemail/program/include/rcube_template.php
r4083 r4091 31 31 class rcube_template extends rcube_html_page 32 32 { 33 var $app; 34 var $config; 35 var $framed = false; 36 var $pagetitle = ''; 37 var $message = null; 38 var $env = array(); 39 var $js_env = array(); 40 var $js_commands = array(); 41 var $object_handlers = array(); 33 private $app; 34 private $config; 35 private $pagetitle = ''; 36 private $message = null; 37 private $js_env = array(); 38 private $js_commands = array(); 39 private $object_handlers = array(); 42 40 43 41 public $browser; 42 public $framed = false; 43 public $env = array(); 44 44 public $type = 'html'; 45 45 public $ajax_call = false;
Note: See TracChangeset
for help on using the changeset viewer.
