Technology Tools for Ministry

Browse by Category

Search By...

###EMPTY_SEARCH###

Showing Category: Coding Standards

Select Naming & Style Guide

Featured below are the recommended naming and style guide for writing PHP code for extensions.

EXTENSION NAMING

    tx_yourExtensionName =>...

11/22/2006 Category: Coding Standards

Select Coding Guidelines

Here are recommended guidelines for PHP coding in TYPO3 environment:

Create classes with methodsPut all functions as methods in classes. Only put one class...

11/22/2006 Category: Coding Standards

Debug Extensions

Debugging in TYPO3 can be a bit of a challenge because there is so much code. Mostly, you will be debugging your extension and its' code. There are times when...

11/22/2006 Category: Coding Standards

Ensure Security in Extensions

It is very important to make sure your extension or system cannot be hacked. Here is a list of a few things to be aware of:

Cross Site Scripting (XSS)

If...

11/22/2006 Category: Coding Standards