2023-05-16 10:50:42 +08:00

21 lines
573 B
PHP

<?php
public function checkBizUserLimit($type = 'user')
{
return $this->loadExtension('zentaobiz')->checkBizUserLimit($type);
}
public function getBizUserLimit($type = 'user')
{
return $this->loadExtension('zentaobiz')->getBizUserLimit($type);
}
public function getByQuery($browseType = 'inside', $query = '', $pager = null, $orderBy = 'id')
{
return $this->loadExtension('zentaobiz')->getByQuery($browseType, $query, $pager, $orderBy);
}
public function getAddUserWarning($limit)
{
return $this->loadExtension('zentaobiz')->getAddUserWarning($limit);
}