Advertisement
Guest User

Untitled

a guest
Mar 31st, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. 'apprenticeship_document' => array(
  2. 'exclude' => 1,
  3. 'label' => 'LLL:EXT:stellen/Resources/Private/Language/locallang_db.xlf:tx_stellen_domain_model_institution.apprenticeship_document',
  4. 'config' => TYPO3CMSCoreUtilityExtensionManagementUtility::getFileFieldTCAConfig(
  5. 'apprenticeshipDocument',
  6. array('maxitems' => 1),
  7. '*'
  8. ),
  9. ),
  10.  
  11. /**
  12. * apprenticeshipDocument
  13. *
  14. * @var TYPO3CMSExtbaseDomainModelFileReference
  15. */
  16. protected $apprenticeshipDocument = NULL;
  17.  
  18. /**
  19. * Returns the apprenticeshipDocument
  20. *
  21. * @return TYPO3CMSExtbaseDomainModelFileReference $apprenticeshipDocument
  22. */
  23. public function getApprenticeshipDocument() {
  24. return $this->apprenticeshipDocument;
  25. }
  26.  
  27. /**
  28. * Sets the apprenticeshipDocument
  29. *
  30. * @param TYPO3CMSExtbaseDomainModelFileReference $apprenticeshipDocument
  31. * @return void
  32. */
  33.  
  34. public function setApprenticeshipDocument(TYPO3CMSExtbaseDomainModelFileReference $apprenticeshipDocument) {
  35. $this->apprenticeshipDocument = $apprenticeshipDocument;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement