Exemplo 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');
 }
Exemplo 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');
     }
 }
Exemplo 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;
 }
Exemplo 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();
 }
Exemplo 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');
 }
Exemplo n.º 6
0
 /**
  * @param CApiGlobalManager &$oManager
  */
 public function __construct(CApiGlobalManager &$oManager, $sForcedStorage = '')
 {
     parent::__construct('subscriptions', $oManager, $sForcedStorage);
     $this->inc('classes.subscription');
     $this->oTenants = null;
 }
Exemplo n.º 7
0
 /**
  * @param CApiGlobalManager &$oManager
  */
 public function __construct(CApiGlobalManager &$oManager, $sForcedStorage = '')
 {
     parent::__construct('webmail', $oManager, $sForcedStorage);
 }
Exemplo n.º 8
0
 /**
  * @param CApiGlobalManager &$oManager
  */
 public function __construct(CApiGlobalManager &$oManager, $sForcedStorage = '')
 {
     parent::__construct('filestorage', $oManager, $sForcedStorage);
     $this->inc('classes.item');
 }
Exemplo n.º 9
0
 /**
  * @param CApiGlobalManager &$oManager
  */
 public function __construct(CApiGlobalManager &$oManager, $sForcedAuthentication = '')
 {
     parent::__construct('twofactorauth', $oManager, $sForcedAuthentication);
     $this->inc('classes.twofactorauth');
 }
Exemplo n.º 10
0
 /**
  * @param CApiGlobalManager &$oManager
  */
 public function __construct(CApiGlobalManager &$oManager, $sForcedStorage = '')
 {
     parent::__construct('fetchers', $oManager, $sForcedStorage);
     $this->inc('classes.fetcher');
 }
Exemplo 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');
 }