Exemple #1
0
 /**
  * @access protected
  *
  * @param string $sEmailAddresses = ''
  */
 protected function __construct($sEmailAddresses = '')
 {
     parent::__construct();
     if (0 < \strlen($sEmailAddresses)) {
         $this->parseEmailAddresses($sEmailAddresses);
     }
 }
 /**
  * @access protected
  */
 protected function __construct()
 {
     parent::__construct();
     $this->sNamespace = '';
     $this->FoldersHash = '';
     $this->SystemFolders = array();
     $this->IsThreadsSupported = false;
 }
 /**
  * @access protected
  *
  * @param string $sEmailAddresses = ''
  */
 protected function __construct($sEmailAddresses = '')
 {
     parent::__construct();
     $sEmailAddresses = \MailSo\Base\Utils::Trim($sEmailAddresses);
     if (0 < \strlen($sEmailAddresses)) {
         $this->parseEmailAddresses($sEmailAddresses);
     }
 }
Exemple #4
0
 /**
  * @access protected
  */
 protected function __construct()
 {
     parent::__construct();
     $this->bUsed = false;
     $this->aForbiddenTypes = array();
     $this->aSecretWords = array();
     $this->bShowSecter = false;
     \register_shutdown_function(array(&$this, '__loggerShutDown'));
 }
Exemple #5
0
 /**
  * @access protected
  */
 protected function __construct()
 {
     parent::__construct();
     $this->bUsed = false;
     $this->aForbiddenTypes = array();
     $this->aSecretWords = array();
     $this->bShowSecter = false;
     $this->bHideErrorNotices = false;
     \set_error_handler(array(&$this, '__phpErrorHandler'));
     \register_shutdown_function(array(&$this, '__loggerShutDown'));
 }
 /**
  * @return \MailSo\Mail\MessageCollection
  */
 public function Clear()
 {
     parent::Clear();
     $this->FolderHash = '';
     $this->MessageCount = 0;
     $this->MessageUnseenCount = 0;
     $this->MessageResultCount = 0;
     $this->FolderName = '';
     $this->Offset = 0;
     $this->Limit = 0;
     $this->Search = '';
     $this->UidNext = '';
     $this->NewMessages = array();
     $this->LastCollapsedThreadUids = array();
     return $this;
 }
 /**
  * @param array $aList
  *
  * @return \MailSo\Mime\ParameterCollection
  *
  * @throws \MailSo\Base\Exceptions\InvalidArgumentException
  */
 public function SetAsArray($aList)
 {
     parent::SetAsArray($aList);
     return $this;
 }
 /**
  * @access protected
  */
 protected function __construct()
 {
     parent::__construct();
 }
 /**
  * Removes all messages from the collection.
  * 
  * @return CApiMailMessageCollection
  */
 public function clear()
 {
     parent::clear();
     $this->MessageCount = 0;
     $this->MessageUnseenCount = 0;
     $this->MessageResultCount = 0;
     $this->FolderName = '';
     $this->Offset = 0;
     $this->Limit = 0;
     $this->Search = '';
     $this->Filters = '';
     $this->UidNext = '';
     $this->FolderHash = '';
     $this->Uids = array();
     $this->New = array();
     return $this;
 }
Exemple #10
0
 /**
  * @return void
  */
 public function Clear()
 {
     parent::Clear();
     $this->sRawHeaders = '';
 }
 /**
  * @return void
  */
 protected function __construct()
 {
     parent::__construct();
     $this->sNamespace = '';
 }