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