Author: Michael Slusarz (slusarz@horde.org)
Inheritance: extends Ingo_Rule
示例#1
0
文件: Move.php 项目: raz0rsdge/horde
 /**
  */
 public function __construct()
 {
     parent::__construct();
     $this->flags = self::FLAG_AVAILABLE;
     $this->label = _("Deliver to folder...");
     $this->type = self::TYPE_MAILBOX;
 }
示例#2
0
 /**
  */
 public function __construct()
 {
     parent::__construct();
     $this->flags = self::FLAG_AVAILABLE;
     $this->label = _("Deliver to my Inbox and redirect to...");
     $this->type = self::TYPE_TEXT;
 }
示例#3
0
文件: FlagOnly.php 项目: horde/horde
 /**
  */
 public function __construct()
 {
     parent::__construct();
     $this->flags = self::FLAG_AVAILABLE;
     $this->label = _("Only flag the message");
 }
示例#4
0
文件: Keep.php 项目: horde/horde
 /**
  */
 public function __construct()
 {
     parent::__construct();
     $this->flags = self::FLAG_AVAILABLE;
     $this->label = _("Deliver into my Inbox");
 }
示例#5
0
文件: Reject.php 项目: horde/horde
 /**
  */
 public function __construct()
 {
     parent::__construct();
     $this->label = _("Reject with reason...");
     $this->type = self::TYPE_TEXT;
 }
示例#6
0
文件: Discard.php 项目: horde/horde
 /**
  */
 public function __construct()
 {
     parent::__construct();
     $this->label = _("Delete message");
     $this->type = self::TYPE_EMPTY;
 }
示例#7
0
文件: Redirect.php 项目: horde/horde
 /**
  */
 public function __construct()
 {
     parent::__construct();
     $this->label = _("Redirect to...");
     $this->type = self::TYPE_TEXT;
 }
示例#8
0
 /**
  */
 public function __construct()
 {
     parent::__construct();
     $this->label = _("Notify email address...");
     $this->type = self::TYPE_TEXT;
 }