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
ファイル: RedirectKeep.php プロジェクト: horde/horde
 /**
  */
 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
ファイル: Notify.php プロジェクト: raz0rsdge/horde
 /**
  */
 public function __construct()
 {
     parent::__construct();
     $this->label = _("Notify email address...");
     $this->type = self::TYPE_TEXT;
 }