Ejemplo n.º 1
0
 /**
  * @access protected
  *
  * @param string $sEmailAddresses = ''
  */
 protected function __construct($sEmailAddresses = '')
 {
     parent::__construct();
     if (0 < \strlen($sEmailAddresses)) {
         $this->parseEmailAddresses($sEmailAddresses);
     }
 }
Ejemplo n.º 2
0
 /**
  * @access protected
  *
  * @param string $sRawParams = ''
  */
 protected function __construct($sRawParams = '')
 {
     parent::__construct();
     if (0 < strlen($sRawParams)) {
         $this->Parse($sRawParams);
     }
 }
Ejemplo n.º 3
0
 /**
  * @access protected
  */
 protected function __construct()
 {
     parent::__construct();
     $this->sNamespace = '';
     $this->FoldersHash = '';
     $this->SystemFolders = array();
     $this->IsThreadsSupported = false;
 }
Ejemplo n.º 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);
     }
 }
Ejemplo n.º 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);
     }
 }
Ejemplo n.º 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'));
 }
Ejemplo n.º 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);
     }
 }
Ejemplo n.º 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'));
 }
Ejemplo n.º 9
0
 /**
  * @access protected
  */
 protected function __construct()
 {
     parent::__construct();
 }
Ejemplo n.º 10
0
 /**
  * Initializes collection properties.
  * 
  * @return void
  */
 protected function __construct()
 {
     parent::__construct();
     $this->clear();
 }
Ejemplo n.º 11
0
 /**
  * @return void
  */
 protected function __construct()
 {
     parent::__construct();
     $this->sNamespace = '';
 }