protected function __construct()
 {
     parent::__construct();
     $this->usergroupcache = vB::getDatastore()->get_value('usergroupcache');
     $this->sortUserGroupList();
     $this->privateGroups = array(self::CHANNEL_OWNER_SYSGROUPID, self::CHANNEL_MODERATOR_SYSGROUPID, self::CHANNEL_MEMBER_SYSGROUPID);
 }
 protected function __construct()
 {
     parent::__construct();
     require_once DIR . '/includes/class_paid_subscription.php';
     // Cache subscriptions
     $this->subobj = new vB_PaidSubscription();
     $this->fetchActivePaymentApis();
 }
Exemple #3
0
 protected function __construct()
 {
     parent::__construct();
     $this->userContext = vB::getUserContext();
     $this->library = vB_Library::instance('user');
 }
Exemple #4
0
 /**
  * Constructor
  */
 protected function __construct()
 {
     parent::__construct();
     $this->dbassertor = vB::getDbAssertor();
 }
Exemple #5
0
 public function __construct()
 {
     parent::__construct();
     $this->assertor = vB::getDbAssertor();
 }
 protected function __construct()
 {
     parent::__construct();
 }
Exemple #7
0
 protected function __construct()
 {
     parent::__construct();
     $this->library = vB_Library::instance('Style');
 }
 protected function __construct()
 {
     parent::__construct();
     $this->assertor = vB::getDbAssertor();
     $this->imageHandler = vB_Image::instance();
 }
 protected function __construct()
 {
     parent::__construct();
     $this->cleaner = new vB_Cleaner();
     $this->library = vB_Library::instance('external');
 }
Exemple #10
0
 /**
  * Constructor
  */
 protected function __construct()
 {
     parent::__construct();
     $this->assertor = vB::getDbAssertor();
     $this->library = vB_Library::instance('blog');
 }
Exemple #11
0
 /**
  * Constructor
  */
 protected function __construct()
 {
     parent::__construct();
     //The table for the type-specific data.
     $this->assertor = vB::getDbAssertor();
     $this->nodeApi = vB_Api::instanceInternal('node');
     // TODO remove this when the previewFields var is removed
     $this->previewFields = $this->nodeApi->fetchPreviewFields();
     // TODO remove this when the nodeFields var is removed
     $this->nodeFields = $this->nodeApi->getNodeFields();
     $this->options = vB::get_datastore()->get_value('options');
 }
Exemple #12
0
 /**
  * Constructor
  */
 protected function __construct()
 {
     parent::__construct();
     // cache all ads
     $this->updateAdCache();
 }
Exemple #13
0
 protected function __construct()
 {
     parent::__construct();
     $this->library = vB_Library::instance('node');
     $this->pmContenttypeid = vB_Types::instance()->getContentTypeId('vBForum_PrivateMessage');
 }
Exemple #14
0
 /**
  * Initializes an Api Help object
  */
 public function __construct()
 {
     parent::__construct();
     $this->cleanerObj = new vB_Cleaner();
 }