2016-03-20 8 views
0

私はextbase extension creationTYPO3 Extbase:クラスの空のインスタンスを作成することはできません... ObjectStorage

Cannot create empty instance of the class 
"TYPO3\CMS\Extbase\Persistence\ObjectStorage" because it does not implement 
the TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface. 

中に私のプロジェクトでは、次のTYPO3のエラーを持っているが、私はそれが別の拡張rezepteからロードするオブジェクトに関係していると思います。

'rezepte' => array(
     'exclude' => 0, 
     'label' => 'LLL:EXT:nebenwirkungen/Resources/Private/Language/locallang_db.xlf:tx_nebenwirkungen_domain_model_nebenwirkung.rezepte', 
     'config' => array(
      'type' => 'select', 
      'foreign_table' => 'tx_rezepte_domain_model_rezept', 
          'foreign_table_where' => 'AND tx_rezepte_domain_model_rezept.sys_language_uid=###REC_FIELD_sys_language_uid### ORDER BY tx_rezepte_domain_model_rezept.rezeptname', 
      'MM' => 'tx_nebenwirkungen_nebenwirkung__mm', 
      'size' => 10, 
      'autoSizeMax' => 30, 
      'maxitems' => 9999, 
      'multiple' => 0, 
      'wizards' => array(
       '_PADDING' => 1, 
       '_VERTICAL' => 1, 
      ), 
     ), 
    ), 

何が間違っている可能性がありますか?

\TYPO3\CMS\Extbase\Persistence\ObjectStorage<> 

がなければならない:

私はモデルファイル内のオブジェクトストレージの種類を設定するのを忘れ:私が間違っていたものを見つけ

答えて

3

\TYPO3\CMS\Extbase\Persistence\ObjectStorage<\EmP\Rezepte\Domain\Model\Rezept> 
関連する問題