| 123456789101112131415161718192021222324252627282930 |
- <?php
- public function checkBizUserLimit($type = 'user')
- {
- return $this->loadExtension('zentaobiz')->checkBizUserLimit($type);
- }
- public function getBizUserLimit($type = 'user')
- {
- return $this->loadExtension('zentaobiz')->getBizUserLimit($type);
- }
- /**
- * @param string $browseType
- * @param string $query
- * @param string $orderBy
- */
- public function getByQuery($browseType = 'inside', $query = '', $pager = null, $orderBy = 'id')
- {
- return $this->loadExtension('zentaobiz')->getByQuery($browseType, $query, $pager, $orderBy);
- }
- public function getLeftUsers()
- {
- return $this->loadExtension('zentaobiz')->getLeftUsers();
- }
- public function getAddUserWarning()
- {
- return $this->loadExtension('zentaobiz')->getAddUserWarning();
- }
|