コード例 #1
0
ファイル: Junk.php プロジェクト: xepan/communication
 function init()
 {
     parent::init();
     $this->addCondition('status', 'Junk');
     // $this->addCondition('direction','In');
 }
コード例 #2
0
ファイル: Draft.php プロジェクト: xepan/communication
 function init()
 {
     parent::init();
     $this->addCondition('status', 'Draft');
     $this->addCondition('direction', 'Out');
 }
コード例 #3
0
ファイル: Received.php プロジェクト: xepan/communication
 function init()
 {
     parent::init();
     $this->addCondition('status', 'Received');
     $this->addCondition('direction', 'In');
 }
コード例 #4
0
ファイル: Sent.php プロジェクト: xepan/communication
 function init()
 {
     parent::init();
     $this->addCondition('status', ['Sent', 'Outbox']);
     $this->addCondition('direction', 'Out');
 }
コード例 #5
0
ファイル: Trashed.php プロジェクト: xepan/communication
 function init()
 {
     parent::init();
     $this->addCondition('status', 'Trashed');
 }
コード例 #6
0
ファイル: Starred.php プロジェクト: xepan/communication
 function init()
 {
     parent::init();
     $this->addCondition('is_starred', true);
 }