Jump to content

TYPO3: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Voidus (talk | contribs)
No edit summary
Voidus (talk | contribs)
No edit summary
Line 7: Line 7:
caption = TYPO3 backend module |
caption = TYPO3 backend module |
developer = [http://association.typo3.org/ TYPO3 Association] |
developer = [http://association.typo3.org/ TYPO3 Association] |
latest_release_version = 4.1.6 |
latest_release_version = 4.2.0<!-- 4.1.6 -->|
latest_release_date = [[March 3]], [[2007]] |
latest_release_date = [[April 23]],[[2008]]<!-- [[March 3]], [[2007]]--> |
latest preview version = 4.2RC2 |
latest preview version = <!-- 4.2RC2 --> |
latest preview date = [[April 17]], [[2008]] |
latest preview date = [[April 17]], [[2008]] |
operating_system = [[Cross-platform]] |
operating_system = [[Cross-platform]] |

Revision as of 20:41, 23 April 2008

Template:Distinguish2

TYPO3
Developer(s)TYPO3 Association
Stable release
4.2.0 / April 23,2008
Repository
Operating systemCross-platform
PlatformPHP
TypeContent management system
LicenseGNU General Public License
Websitewww.typo3.com
www.typo3.org
(Developer Resource)

TYPO3 is a free and open source enterprise level content management system. It is written in PHP. It has become a wide spread content management systems (CMS) on the web and in intranets.

Author and availability

Initially authored by Kasper Skårhøj, it is available for free and licensed under the GNU General Public License. Today, the core of TYPO3 is developed by two teams in a maintenance tree (4.x, leader Michael Stucki) and a development tree (5.x, leader Robert Lemke). Independent authors have contributed hundreds of pluggable extensions.

TYPO3 offers full flexibility and extendability while featuring an accomplished set of ready-made interfaces, functions and modules. Nearly 3000 extensions are available for download under the GNU General Public License from a repository called the TYPO3 Extension Repository, or TER.

Operating modes

TYPO3 has two operating modes: a frontend, which presents a TYPO3 based website to its users, and a backend, used by authors and site administrators to manage content for the website. The backend is used with an ordinary web browser, so there is no special software needed to work on a TYPO3-based website.

Design

The system is based on templates. People can choose an existing template and change features such as logo, colors, and fonts, or they can construct their own templates using a configuration language called TypoScript. In this simple notation, a large object tree structure of information is created with placeholders for data from the database to fill in. Preprogrammed objects are configured by changing or adding values or features. This object tree structure is saved in a text file. Various editors are available to change the content in a structured way. The PHP generator uses this data structure to drive the generation of the content. Besides conditions, TypoScript has no other control structures; if real processing must be performed, it is handed to a PHP function. The top level object is the PAGE object. There are various types of MENU objects.

Syntax of TypoScript

The basic syntax is:

[objectpath].[attribute]  [operator]  [value]

Operators are

  • = assignment of a value
  • < copy a whole object
  • =< insert a reference
  • > remove object

Examples:

myObject.attribute1=Hello

The content is mainly stored in two tables: one table called pages and another called tt_content, which holds the elements contained in a page. Every page object has a unique identification key (uid) and is linked to a parent page. Thus, the pages are organized in tree form, allowing the system to easily generate menus and site maps.

One key feature of TYPO3 is that it has a flexible application programming interface which enables independent developers to provide extra functionality. Modules using this API are called "extensions" and many developers provide their extensions in a publicly available repository on the TYPO3 developer portal.

TemplaVoila

TemplaVoila is an alternative template engine extension for TYPO3. Features include a graphical mapping tool for creating templates, a new page module, the ability to create flexible content elements and an API for developers. New content element types can be created without programming in no time while full control over the HTML output is provided. TemplaVoila facilitates more flexibility for maintaining web pages while making it possible to enforce a strict corporate design and allowing editors to work with content more intuitively.

Requirements

Web server [1]

Client (user) [1]

See also

Further reading

  • Rene Fritz, Daniel Hinderink, Werner Altmann – TYPO3: Enterprise Content Management (Paperback) – ISBN 1-904811-41-8
  • Michael Peacock – Building Websites with TYPO3 (Paperback) – ISBN 1-847191-11-8

References