From 85a6173879bb2486e394fb8e6b8a107a59167374 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 23 May 2012 12:56:20 +0200 Subject: hide_blockquote - a new plugin for hiding citation blocks --- plugins/hide_blockquote/hide_blockquote.php | 82 +++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 plugins/hide_blockquote/hide_blockquote.php (limited to 'plugins/hide_blockquote/hide_blockquote.php') diff --git a/plugins/hide_blockquote/hide_blockquote.php b/plugins/hide_blockquote/hide_blockquote.php new file mode 100644 index 000000000..ca0273a5d --- /dev/null +++ b/plugins/hide_blockquote/hide_blockquote.php @@ -0,0 +1,82 @@ + + */ +class hide_blockquote extends rcube_plugin +{ + public $task = 'mail|settings'; + + function init() + { + $rcmail = rcmail::get_instance(); + + if ($rcmail->task == 'mail' + && ($rcmail->action == 'preview' || $rcmail->action == 'show') + && ($limit = $rcmail->config->get('hide_blockquote_limit')) + ) { + // include styles + $skin = $rcmail->config->get('skin'); + if (!file_exists($this->home."/skins/$skin/style.css")) { + $skin = 'default'; + } + $this->include_stylesheet("skins/$skin/style.css"); + + // Script and localization + $this->include_script('hide_blockquote.js'); + $this->add_texts('localization', true); + + // set env variable for client + $rcmail->output->set_env('blockquote_limit', $limit); + } + else if ($rcmail->task == 'settings') { + $dont_override = $rcmail->config->get('dont_override', array()); + if (!in_array('hide_blockquote_limit', $dont_override)) { + $this->add_hook('preferences_list', array($this, 'prefs_table')); + $this->add_hook('preferences_save', array($this, 'save_prefs')); + } + } + } + + function prefs_table($args) + { + if ($args['section'] != 'mailview') { + return $args; + } + + $this->add_texts('localization'); + + $rcmail = rcmail::get_instance(); + $limit = (int) $rcmail->config->get('hide_blockquote_limit'); + $field_id = 'hide_blockquote_limit'; + $input = new html_inputfield(array('name' => '_'.$field_id, 'id' => $field_id, 'size' => 5)); + + $args['blocks']['main']['options']['hide_blockquote_limit'] = array( + 'title' => $this->gettext('quotelimit'), + 'content' => $input->show($limit ? $limit : '') + ); + + return $args; + } + + function save_prefs($args) + { + if ($args['section'] == 'mailview') { + $args['prefs']['hide_blockquote_limit'] = (int) get_input_value('_hide_blockquote_limit', RCUBE_INPUT_POST); + } + + return $args; + } + +} -- cgit v1.2.3