Reputation: 336
How to create a new extension in typo3 6? Is the kickstarter extension compatible with typo3 6?
Upvotes: 4
Views: 4820
Reputation: 327
Q: How to create a new extension in typo3 6?
A: There are two ways to create a new extension in typo3 6.
Simple example for the second way of creating an extension:
type in this command to create an extension with the extension key "test":
./typo3/cli_dispatch.phpsh extbase builder:providerextension \
--extension-key test --author "Your name [email protected]" \
--pages 1 --content 1 --controllers 1 --git 1 --travis 1 --use-vhs 1
Fire up your php editor and go to path_to_your_typo3_project/typo3conf/ext/test and edit your brand new extension.
Q: Is the kickstarter extension compatible with typo3 6?
A: No. But the "old" pi-based extensions, you create with the kickstarter will still run on typo3 6.
Upvotes: 0
Reputation: 5840
You can use the extension "extension_builder". It generates (skeletons for) extbase/fluid based extensions and is compatible with TYPO3 6.0 (Makes even use of namespaces in generated extensions, which were only introduced in 6.0).
If you want to build fluid/exbase extensions, you should read this book to get familiar with these extensions. In german it is also available as paperback.
I'm not sure the "kickstarter" extension still works, but its last update is a maintainance release to make it work in TYPO3 v4.6, so there is a good chance it does.
Upvotes: 11