* @copyright 2002-2009 Alexandros Vellis * @package plugins * @subpackage avelsieve */ /** * STOP Action */ class avelsieve_action_stop extends avelsieve_action { var $num = 0; var $name = 'stop'; var $text = ''; var $image_src = 'images/icons/stop.png'; function avelsieve_action_stop(&$s, $rule = array()) { $this->init(); $this->helptxt = _("If this rule matches, do not check any rules after it."); $this->text = _("STOP"); $this->avelsieve_action($s, $rule); } }