如何獲得我所有前端用戶組的列表?獲取TYPO3 FE_User組列表
我已經試過這樣:
/**
* feUserGroupRepository
*
* @var \TYPO3\CMS\Extbase\Domain\Repository\FrontendUserGroupRepository
* @inject
*/
protected $feUserGroupRepository = NULL;`
,然後這樣的:
$usergroups = $this->feUserGroupRepository->findAll();
我得到這個錯誤:調用一個成員函數findAll()
一個非對象
我試過這種方式:
/**
* @var \TYPO3\CMS\Extbase\Domain\Repository\FrontendUserGroupRepository $feUserGroupRepository
*/
$feUserGroupRepository = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Extbase\\Domain\\Repository\\FrontendUserGroupRepository');
$allUsers = $feUserGroupRepository->findAll();`
不到風度在所有的工作我已經得到了這個錯誤消息
PHP開捕致命錯誤:參數1傳遞給
TYPO3\CMS\Extbase\Persistence\Repository::__construct() must implement interface
TYPO3\CMS\Extbase\Object\ObjectManagerInterface, none given, called in
C:\xampp\htdocs\typo3\typo3\sysext\core\Classes\Utility\GeneralUtility.php on
line 4431 and
defined in C:\xampp\htdocs\typo3\typo3\sysext\extbase\Classes\Persistence\Repository.php
我怎樣才能得到所有feusergroups列表?
Rcord類型?
請首先改進您的格式。 – lorenz
已經完成... – Felix