- Create Plugin ================ ./flow kickstart:package WE.Example ./flow kickstart:model --force --package-key WE.Example --model-name News \title:string \teaser:string \desc:string ./flow kickstart:actioncontroller --generate-actions --generate-templates --generate-related WE.Example News
'WE.Example:Plugin': superTypes: - 'TYPO3.Neos:Plugin' ui: label: 'Example Plugin' group: 'plugins'
prototype(WE.Example:Plugin) < prototype(TYPO3.Neos:Plugin) prototype(WE.Example:Plugin) { package = 'WE.Example' controller = 'News' action = 'index' argumentNamespace = 'news' }
TYPO3: Neos: typoScript: # autoInclude TS2 for WE.Example : autoInclude: 'WE.Example': TRUE
resources: methods: WE_Example_NewsAccess: 'method(WE\Example\Controller\NewsController->(index)Action())'
acls: Everybody: methods: WE_Example_NewsAccess: GRANT Done!
- Create Module ================ Please look into our code example!