Esempio n. 1
0
 /**
  * Creates a new instance of the object.
  * 
  * @param CApiGlobalManager &$oManager
  */
 public function __construct(CApiGlobalManager &$oManager, $sForcedStorage = '')
 {
     parent::__construct('users', $oManager, $sForcedStorage);
     $this->inc('classes.enum');
     $this->inc('classes.user');
     $this->inc('classes.account');
     $this->inc('classes.caluser');
     $this->inc('classes.identity');
 }
Esempio n. 2
0
 /**
  * Creates a new instance of the object.
  *
  * @param CApiGlobalManager &$oManager
  */
 public function __construct(CApiGlobalManager &$oManager, $sForcedStorage = '')
 {
     parent::__construct('contactsmain', $oManager, $sForcedStorage);
     $this->inc('classes.contact-list-item');
     $this->inc('classes.contact');
     $this->inc('classes.group');
     if (CApi::Manager('dav')) {
         $this->inc('classes.vcard-helper');
     }
 }
Esempio n. 3
0
 /**
  * @param CApiGlobalManager &$oManager
  * @param string $sForcedStorage Default value is empty string.
  */
 public function __construct(CApiGlobalManager &$oManager, $sForcedStorage = '')
 {
     parent::__construct('helpdesk', $oManager, $sForcedStorage);
     $this->inc('classes.enum');
     $this->inc('classes.user');
     $this->inc('classes.attachment');
     $this->inc('classes.post');
     $this->inc('classes.thread');
     $this->oApiMail = null;
     $this->oApiUsers = null;
     $this->oApiTenants = null;
 }
Esempio n. 4
0
 /**
  * Initializes manager property.
  * 
  * @param CApiGlobalManager &$oManager Manager object.
  * 
  * @return void
  */
 public function __construct(CApiGlobalManager &$oManager)
 {
     parent::__construct('mail', $oManager);
     $this->inc('classes.enum');
     $this->inc('classes.folder');
     $this->inc('classes.folder-collection');
     $this->inc('classes.message');
     $this->inc('classes.message-collection');
     $this->inc('classes.attachment');
     $this->inc('classes.attachment-collection');
     $this->inc('classes.ics');
     $this->inc('classes.vcard');
     $this->aImapClientCache = array();
 }
Esempio n. 5
0
 /**
  * Creates a new instance of the object.
  *
  * @param CApiGlobalManager &$oManager
  */
 public function __construct(CApiGlobalManager &$oManager, $sForcedStorage = '')
 {
     parent::__construct('db', $oManager, $sForcedStorage);
     $this->inc('classes.enum');
     $this->inc('classes.sql');
 }
Esempio n. 6
0
 /**
  * @param CApiGlobalManager &$oManager
  */
 public function __construct(CApiGlobalManager &$oManager, $sForcedStorage = '')
 {
     parent::__construct('subscriptions', $oManager, $sForcedStorage);
     $this->inc('classes.subscription');
     $this->oTenants = null;
 }
Esempio n. 7
0
 /**
  * @param CApiGlobalManager &$oManager
  */
 public function __construct(CApiGlobalManager &$oManager, $sForcedStorage = '')
 {
     parent::__construct('webmail', $oManager, $sForcedStorage);
 }
Esempio n. 8
0
 /**
  * @param CApiGlobalManager &$oManager
  */
 public function __construct(CApiGlobalManager &$oManager, $sForcedStorage = '')
 {
     parent::__construct('filestorage', $oManager, $sForcedStorage);
     $this->inc('classes.item');
 }
Esempio n. 9
0
 /**
  * @param CApiGlobalManager &$oManager
  */
 public function __construct(CApiGlobalManager &$oManager, $sForcedAuthentication = '')
 {
     parent::__construct('twofactorauth', $oManager, $sForcedAuthentication);
     $this->inc('classes.twofactorauth');
 }
Esempio n. 10
0
 /**
  * @param CApiGlobalManager &$oManager
  */
 public function __construct(CApiGlobalManager &$oManager, $sForcedStorage = '')
 {
     parent::__construct('fetchers', $oManager, $sForcedStorage);
     $this->inc('classes.fetcher');
 }
Esempio n. 11
0
 /**
  * @param CApiGlobalManager &$oManager
  */
 public function __construct(CApiGlobalManager &$oManager, $sForcedStorage = '')
 {
     parent::__construct('tenants', $oManager, $sForcedStorage);
     $this->inc('classes.tenant');
     $this->inc('classes.socials');
 }