Пример #1
0
 /**
  * @access protected
  *
  * @param string $sEmailAddresses = ''
  */
 protected function __construct($sEmailAddresses = '')
 {
     parent::__construct();
     if (0 < \strlen($sEmailAddresses)) {
         $this->parseEmailAddresses($sEmailAddresses);
     }
 }
Пример #2
0
 /**
  * @access protected
  *
  * @param string $sRawParams = ''
  */
 protected function __construct($sRawParams = '')
 {
     parent::__construct();
     if (0 < strlen($sRawParams)) {
         $this->Parse($sRawParams);
     }
 }
Пример #3
0
 /**
  * @access protected
  */
 protected function __construct()
 {
     parent::__construct();
     $this->sNamespace = '';
     $this->FoldersHash = '';
     $this->SystemFolders = array();
     $this->IsThreadsSupported = false;
 }
Пример #4
0
 /**
  * @access protected
  *
  * @param string $sEmailAddresses = ''
  */
 protected function __construct($sEmailAddresses = '')
 {
     parent::__construct();
     $sEmailAddresses = \MailSo\Base\Utils::Trim($sEmailAddresses);
     if (0 < \strlen($sEmailAddresses)) {
         $this->parseEmailAddresses($sEmailAddresses);
     }
 }
Пример #5
0
 /**
  * @access protected
  *
  * @param string $sRawHeaders = ''
  * @param bool $bStoreRawHeaders = true
  */
 protected function __construct($sRawHeaders = '', $bStoreRawHeaders = true)
 {
     parent::__construct();
     $this->sRawHeaders = '';
     $this->sParentCharset = \MailSo\Base\Enumerations\Charset::ISO_8859_1;
     if (0 < \strlen($sRawHeaders)) {
         $this->Parse($sRawHeaders, $bStoreRawHeaders);
     }
 }
Пример #6
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'));
 }
Пример #7
0
 /**
  * @access protected
  *
  * @param string $sRawHeaders = ''
  * @param bool $bStoreRawHeaders = true
  */
 protected function __construct($sRawHeaders = '', $bStoreRawHeaders = true)
 {
     parent::__construct();
     $this->sRawHeaders = '';
     $this->sParentCharset = '';
     if (0 < \strlen($sRawHeaders)) {
         $this->Parse($sRawHeaders, $bStoreRawHeaders);
     }
 }
Пример #8
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'));
 }
Пример #9
0
 /**
  * @access protected
  */
 protected function __construct()
 {
     parent::__construct();
 }
Пример #10
0
 /**
  * Initializes collection properties.
  * 
  * @return void
  */
 protected function __construct()
 {
     parent::__construct();
     $this->clear();
 }
Пример #11
0
 /**
  * @return void
  */
 protected function __construct()
 {
     parent::__construct();
     $this->sNamespace = '';
 }