'none', 'right' => 'none', 'down' => 'none'); private $actions = array( 'messagelist' => array( 'vertical' => array( 'checkmail' => 'checkmail' ), 'horizontal' => array( 'swipe-read' => 'swipe.markasread', 'swipe-flagged' => 'swipe.markasflagged', 'delete' => 'delete', 'forward' => 'forward', 'reply' => 'reply', 'reply-all' => 'replyall', 'move' => 'moveto', 'swipe-select' => 'select', 'archive' => 'archive.buttontext', 'markasjunk' => 'markasjunk.buttontitle' ) ) ); public function init() { $rcmail = rcube::get_instance(); $this->config = $this->_load_config(); $this->register_action('plugin.swipe.save_settings', array($this, 'save_settings')); if ($rcmail->output->type == 'html' && $rcmail->action == '') { $this->menu_file = '/' . $this->local_skin_path() . '/menu.html'; if (is_file(slashify($this->home) . $this->menu_file)) { $this->api->output->set_env('swipe_actions', array( 'left' => $this->config['left'], 'right' => $this->config['right'], 'down' => $this->config['down'] )); $this->add_texts('localization/', true); $this->api->output->add_label('none', 'refresh', 'moveto', 'reply', 'replyall', 'forward', 'select'); $this->include_stylesheet($this->local_skin_path() . '/swipe.css'); $this->include_script('swipe.js'); $this->add_hook('render_page', array($this, 'options_menu')); $this->api->output->add_handler('swipeoptionslist', array($this, 'options_list')); } } } public function options_menu($args) { // Other plugins may use template parsing method, this causes more than one render_page execution. // We have to make sure the menu is added only once (when content is going to be written to client). if (!$args['write']) { return; } // add additional menus from skins folder $html = $this->api->output->just_parse("menu_file\" skinpath=\"plugins/swipe\" />"); $this->api->output->add_footer($html); } public function options_list($args) { $disabled_actions = (array) rcube::get_instance()->config->get('disabled_actions'); $laoded_plugins = $this->api->loaded_plugins(); $swipe_actions = $this->actions[$args['source']][$args['axis']]; $args['name'] = $args['fieldname']; // Allow other plugins to interact with the action list $data = rcube::get_instance()->plugins->exec_hook('swipe_actions_list', array('actions' => $swipe_actions, 'source' => $args['source'], 'axis' => $args['axis'])); $select = new html_select($args); $select->add($this->gettext('none'), 'none'); foreach ($data['actions'] as $action => $text) { // Skip the action if it is in disabled_actions config option // Also skip actions from disabled/not configured plugins if (in_array($action, $disabled_actions) || in_array('mail.' . $action, $disabled_actions) || ($action == 'archive' && !$this->api->output->env['archive_folder']) || ($action == 'markasjunk' && !in_array('markasjunk', $laoded_plugins))) { continue; } $select->add($this->gettext($text), $action); } return $select->show(); } public function save_settings() { $config = array(); foreach (array('left', 'right', 'down') as $direction) { if ($prop = rcube_utils::get_input_value('swipe_' . $direction, rcube_utils::INPUT_POST)) { $config[$direction] = $prop; } } if (count($config) > 0) { $config = array_merge($this->config, $config); $config = array('swipe_actions' => array('messagelist' => $config)); rcube::get_instance()->user->save_prefs($config); } } private function _load_config() { $config = rcube::get_instance()->config->get('swipe_actions', array()); return array_key_exists('messagelist', $config) ? $config['messagelist'] : $this->config; } }