Attention

TYPO3 v7 has reached its end-of-life November 30th, 2018 and is not maintained by the community anymore. Looking for a stable version? Use the version switch on the top left.

There is no further ELTS support. It is recommended that you upgrade your project and use a supported version of TYPO3.

Creating a new extension

This chapter is not a tutorial about how to create an Extension. It only aims to be a list of steps to perform and key information to remember.

First you have to register an extension key. This is the unique identifier for your extension.

Kickstarting the extension

Although it is possible to write every single line of an extension from scratch, there is a tool which makes it easier to start: The Extension Builder.

The Extension Builder comes with its own BE module and helps you to create the scaffolding of your extension and to generate all necessary PHP files. Then you can enhance these files with your own code.

After the extension has been written to the folder typo3conf/ext, you will be able to activate it locally and start using it.

Please refer to the Extension Builder's manual for more information.