コード例 #1
0
ファイル: CountryZone.php プロジェクト: khanhdeux/typo3test
 /**
  * On initialization, get the columns mapping configuration
  */
 public function initializeObject()
 {
     parent::initializeObject();
     $this->tableName = ModelUtility::getModelMapping('SJBR\\StaticInfoTables\\Domain\\Model\\CountryZone', ModelUtility::MAPPING_TABLENAME);
     $this->columnsMapping = ModelUtility::getModelMapping('SJBR\\StaticInfoTables\\Domain\\Model\\CountryZone', ModelUtility::MAPPING_COLUMNS);
 }
コード例 #2
0
ファイル: Country.php プロジェクト: khanhdeux/typo3test
 /**
  * On initialization, get the columns mapping configuration
  */
 public function initializeObject()
 {
     parent::initializeObject();
     $this->tableName = ModelUtility::getModelMapping('SJBR\\StaticInfoTables\\Domain\\Model\\Country', ModelUtility::MAPPING_TABLENAME);
     $this->columnsMapping = ModelUtility::getModelMapping('SJBR\\StaticInfoTables\\Domain\\Model\\Country', ModelUtility::MAPPING_COLUMNS);
     $this->countryZones = $this->objectManager->get('TYPO3\\CMS\\Extbase\\Persistence\\ObjectStorage');
 }