Advertisement
Guest User

Untitled

a guest
Feb 19th, 2015
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. 'TYPO3.Neos.NodeTypes:Page':
  2. childNodes:
  3. 'slider':
  4. type: 'ACME.SomeUrl:Slider'
  5. 'teaser':
  6. type: 'TYPO3.Neos:ContentCollection'
  7. constraints:
  8. nodeTypes:
  9. '*': FALSE
  10. 'TYPO3.Neos.NodeTypes:Headline': TRUE
  11. 'TYPO3.Neos.NodeTypes:Text': TRUE
  12. 'TYPO3.Neos.NodeTypes:Image': TRUE
  13. 'footer':
  14. type: 'TYPO3.Neos:ContentCollection'
  15. ui:
  16. inspector:
  17. groups:
  18. image:
  19. label: 'Image'
  20. position: 200
  21. properties:
  22. 'layout':
  23. ui:
  24. inspector:
  25. group: 'layout'
  26. editorOptions:
  27. values:
  28. 'default':
  29. label: 'Default'
  30. 'landingPage':
  31. label: 'Landing page'
  32. 'subpageLayout':
  33. ui:
  34. inspector:
  35. group: 'layout'
  36. editorOptions:
  37. values:
  38. 'default':
  39. label: 'Default'
  40. 'landingPage':
  41. label: 'Landing page'
  42. 'image':
  43. type: TYPO3\Media\Domain\Model\ImageVariant
  44. ui:
  45. label: 'Image'
  46. reloadIfChanged: TRUE
  47. inspector:
  48. group: 'image'
  49. position: 50
  50. editorOptions:
  51. crop:
  52. aspectRatio:
  53. locked:
  54. width: 1600
  55. height: 570
  56. 'imageTitleText':
  57. type: string
  58. ui:
  59. label: 'Title text'
  60. reloadIfChanged: TRUE
  61. inspector:
  62. group: 'image'
  63. position: 100
  64.  
  65. # Slider and SliderElement
  66. 'ACME.SomeUrl:Slider':
  67. superTypes: ['TYPO3.Neos:Content']
  68. childNodes:
  69. sliderItems:
  70. type: 'TYPO3.Neos:ContentCollection'
  71. constraints:
  72. nodeTypes:
  73. '*': FALSE
  74. 'ACME.SomeUrl:SliderElement': TRUE
  75. ui:
  76. label: 'Slider'
  77. icon: 'icon-folder-open-alt'
  78. inlineEditable: TRUE
  79.  
  80. 'ACME.SomeUrl:SliderElement':
  81. superTypes: ['TYPO3.Neos:Content']
  82. childNodes:
  83. image:
  84. type: 'TYPO3.Neos.NodeTypes:Image'
  85. text:
  86. type: 'TYPO3.Neos.NodeTypes:Text'
  87. ui:
  88. label: 'Slider Element'
  89. group: 'general'
  90. icon: 'icon-picture'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement