zentaobiz.php 746 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. public function checkBizUserLimit($type = 'user')
  3. {
  4. return $this->loadExtension('zentaobiz')->checkBizUserLimit($type);
  5. }
  6. public function getBizUserLimit($type = 'user')
  7. {
  8. return $this->loadExtension('zentaobiz')->getBizUserLimit($type);
  9. }
  10. /**
  11. * @param string $browseType
  12. * @param string $query
  13. * @param string $orderBy
  14. */
  15. public function getByQuery($browseType = 'inside', $query = '', $pager = null, $orderBy = 'id')
  16. {
  17. return $this->loadExtension('zentaobiz')->getByQuery($browseType, $query, $pager, $orderBy);
  18. }
  19. public function getLeftUsers()
  20. {
  21. return $this->loadExtension('zentaobiz')->getLeftUsers();
  22. }
  23. public function getAddUserWarning()
  24. {
  25. return $this->loadExtension('zentaobiz')->getAddUserWarning();
  26. }