__construct() 공개 메소드

Constructor.
public __construct ( )
예제 #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
파일: Notify.php 프로젝트: raz0rsdge/horde
 /**
  */
 public function __construct()
 {
     parent::__construct();
     $this->label = _("Notify email address...");
     $this->type = self::TYPE_TEXT;
 }