Software:TYPO3 Flow

From HandWiki
TYPO3 Flow
TYPO3 FLOW Logo.png
Developer(s)Robert Lemke, TYPO3 Association
Stable release
4.2.4[1] / October 18, 2017 (2017-10-18)
Written inPHP
Operating systemCross-platform
TypeWeb application framework
LicenseLGPL, Version 3 or higher (Free Software)
Websiteflow.neos.io

TYPO3 Flow (formerly FLOW3) is a free and open source web application framework written in PHP. The first final version was released on October 20, 2011. It was primarily designed as a basis for the upcoming content management system TYPO3 Neos, but can also be used independently. It is generally suitable for PHP development of mid- or large-scaled web applications.

History

In 2006, the developers of the content management system TYPO3 decided to rewrite the system from scratch. The architecture and underlying technology of the 4.x branch were state of the art after the turn of the millennium. Though the system has been further developed since its release in April 2006, the develeopers agreed on the demand for a complete code redesign to meet modern standards.[2][3][4] Flow evolves from this decision as a discrete and stand-alone Framework that can be used independently from TYPO3.

On August, 29th 2011 the developers announced the first beta release after "8 months of hard work." [5]

At the keynote of the international TYPO3 Conference 2011 (T3CON11) in Hanau, Germany, Robert Lemke, Chief Developer of the coming "next generation" Version of TYPO3, announced the release of the final version of Flow to be on October 20.[6]

At the international TYPO3 Conference 2012 (T3CON12) TYPO3 was announced as a family brand.[7] Subsequently all product names from the TYPO3 project now start with TYPO3, and as "TYPO3 Flow3" is neither easy to pronounce nor would match the name of the other products it was renamed to "TYPO3 Flow".

Usage

TYPO3 Flow provides the base of TYPO3 Neos, but can also be used independently,[8] i.e. establishing own applications such as a blogsystem. In the context of Flow's documentation a blogsystem is used to visualize the various paradigms of Flow like MVC (Model-View-Controller), AOP (Aspect-Oriented-Programming) or DDD (Domain-Driven-Design). The system uses namespaces and therefore depends on PHP 5.3+. It uses Doctrine 2 as a database abstraction layer, and can interface with e.g. MySQL and PostgreSQL.

Paradigms

The developers of TYPO3 Flow focused on a series of paradigms and design patterns, some of which are considered as innovative within the PHP community. These conventions assist the developers to effectively create clean, structured code and to prevent errors [3] Some important aspects are:

  • MVC
  • Aspect Oriented Programming[3][9]
  • Domain-Driven Design
  • Dependency Injection
  • Test Driven Development
  • Signals and slots concept

When designing TYPO3 Flow the developers paid attention that their custom code has minimal dependencies on the TYPO3 Flow API. This allows users to import and use modules that were originally written for other systems (such as Symfony) to be used in TYPO3 Flow with very little modifications. [3]

TYPO3 Flow is based on basic, transparent concepts to make working with it as simple as possible. Thus, the user can, for example, display customer information by writing only three or four lines of PHP source code a Fluid template with HTML code. When the conventions are followed exactly, the framework automatically applies its features to the code (for example, the security baselines).

On a side note, the Java WCMS community has also been paying attention to the development of TYPO3 Neos and TYPO3 Flow, for its modern architecture and transparent code basis[3][10]

Development

On 2 June 2009 the first Build was released as FLOW3 1.0.0 Alpha 1[11] In the following period about 14 alpha versions where released, until FLOW3 was ready for the beta phase in August 2011.[12] In this early development stage, the API has not changed, to guarantee backward compatibility. The TYPO3 Flow core team currently consists of eleven developers actively working on the framework.[3]

Version history

{{{2}}}

Package Version Release date Notes / Changes
FLOW3 1.0.0 Alpha 1 2 Jun 2009
  • First alpha version, followed by numerous alpha, beta and RC releases
1.0.0 20 Oct 2011[13]
  • After 5 years of development, the framework FLOW3 1.0. is released, to serve as the foundation for the new product,
    codename "TYPO3 Phoenix",[14] finally named TYPO3 Neos.
1.1 28 Aug 2012
  • Focus on Speed and Stability
  • Cookie management, content negotiation for media types, cache headers support, expiration model support and a new virtual HTTP client [15]
TYPO3 Flow 2.0 12 Jul 2013
  • Name change
  • Improvement of Speed and Security [16]
  • New package management layer based on Composer
2.1 10 Dec 2013
2.2 23 Jun 2014
2.3 11 Dec 2014
Flow 3.0 11 Aug 2015
3.1 22 Dec 2015
3.2 4 May 2016
3.3 22 Aug 2016

Relations to TYPO3 CMS

Maintenance

TYPO3 Flow was initiated by the TYPO3 community and is mainly developed by the TYPO3 core team. The primary goal is to create a basis for the upcoming CMS TYPO3 Neos. The development and publication is - like all TYPO3 subprojects - funded by the TYPO3 Association.

Approximation

Most of the new features of TYPO3 Flow have been backported for use with older TYPO3 versions (4.3 and higher) to provide a smooth transition to or from TYPO3 CMS. These functions have been integrated into the system extension Extbase and the related Fluid templating engine. Therefore, Domain-Driven Design and MVC concepts can be used within TYPO3 CMS and subsequently ported to systems running TYPO3 Neos.

These conventions were agreed on during Transition Days 2008 in Berlin.[17] Another outcome of this is the renaming from FLOW3 to TYPO3 Flow, which was decided by the TYPO3 association in 2012. The association wanted to clarify that there is a strong relationship between the CMS and the application framework.[18]

Fluid template engine

TYPO3 Flow has its own template engine called Fluid.[19] Though there already were numerous templating engines, none of them did satisfy the requirements of the developers. Designing Fluid, they focussed on the following features:

  • Support of logical structures (such as conditions, loops, or iterating over arrays)
  • No PHP code in the template file
  • Easy to expand
  • Simple syntax
  • Provide an XML structure for automated template validation

Example:

<f:for each="{blogPosts}" as="post">
  Title: {post.title}<br />
</f:for>

blogPosts is a PHP array, which is passed to fluid from external PHP code (the ViewHelper). The template iterates over this array and prints the title of each post object.

The tags used in the template are called ViewHelper. The ability to develop custom ViewHelpers makes Fluid a flexible and extendible templating system.

References

  1. "Release Overview". neos.io. https://github.com/neos/flow-development-collection/releases. Retrieved 7 November 2017. 
  2. "TYPO3 Wiki: TYPO3 4.0". http://wiki.typo3.org/TYPO3_4.0. Retrieved 2011-10-06. 
  3. 3.0 3.1 3.2 3.3 3.4 3.5 Robert Lemke. "Robert Lemke im Interview zu FLOW3". heise developer. http://www.heise.de/developer/artikel/Robert-Lemke-im-Interview-zu-FLOW3-1362225.html. 
  4. Rau, Jochen & Kurfürst, Sebastian: Zukunftssichere TYPO3-Extensions mit Extbase & Fluid, O’Reilly Verlag 2010, p. IX (German)
  5. "FLOW3 1.0 beta release notes". Archived from the original on 19 January 2013. https://web.archive.org/web/20130119140902/http://flow.typo3.org/download/release-notes/flow3-1-0.html. Retrieved 12 May 2013. 
  6. "FLOW3-Framework kommt am 20. Oktober (Autotranslated)". Heise.de. https://translate.google.com/translate?sl=de&tl=en&js=n&prev=_t&hl=en&ie=UTF-8&eotf=1&u=http%3A%2F%2Fwww.heise.de%2Fdeveloper%2Fmeldung%2FFLOW3-Framework-kommt-am-20-Oktober-1356854.html&act=url. Retrieved 12 May 2013. 
  7. "A brand new way". TYPO3 Association. http://typo3.org/news/article/a-brand-new-way/. Retrieved 12 May 2013. 
  8. "A Holistic Concept for Real World Applications". TYPO3 Association. http://flow.typo3.org/about/. Retrieved 12 May 2013. 
  9. "An Enterprise Feature transferred to the PHP world: Aspect-Oriented Programming with FLOW3 (Autotranslated)". t3n Magazine. https://translate.google.com/translate?sl=de&tl=en&u=http://t3n.yeebase.com/magazin/aspektorientierte-programmierung-flow3-enterprise-feature-221181. Retrieved 2012-10-05. 
  10. "State-of-the-art Architecture for Web Content Management Systems German)" (in German). Archived from the original on 2010-10-17. https://web.archive.org/web/20101017044505/http://dev.day.com/microsling/content/blogs/main/modernwcmsarchitecture.html. Retrieved 2012-10-05. 
  11. "FLOW3 - TYPO3's PHP Application Framework". Archived from the original on 2009-06-17. https://web.archive.org/web/20090617043528/http://flow3.typo3.org/news/0/1. Retrieved 2012-10-05. 
  12. "FLOW3 release notes". http://wiki.typo3.org/FLOW3_1.0.0_beta1. Retrieved 22 October 2011. 
  13. "Download information on TYPO3 Flow". http://flow.typo3.org/download/. Retrieved 2012-10-05. 
  14. release notes for FLOW3 1.0 rec. 11 October 2011
  15. "FLOW3 1.1 Release Notes". TYPO3 Association. http://flow.typo3.org/download/release-notes/flow3-1-1.html. Retrieved 30 August 2012. 
  16. "FLOW 2.0 FINAL". Flow team. http://flow.typo3.org/download/release-notes/flow-2-0.html. Retrieved 17 Nov 2013. 
  17. "A common roadmap for TYPO3". http://news.typo3.org/news/article/a-common-roadmap-for-typo3/. Retrieved 2012-10-05. 
  18. Jan Christe. "Aus TYPO3 5.0 Phoenix wird TYPO3 Neos (Autotranslated)" (in German). t3n Magazine. https://translate.google.com/translate?sl=de&tl=en&u=http://t3n.de/news/typo3-50-phoenix-typo3-neos-418511/. Retrieved 2012-10-05. 
  19. "TYPO3 Flow 2.0.0 documentation: Templating". TYPO3 Association. http://docs.typo3.org/flow/TYPO3FlowDocumentation/TheDefinitiveGuide/PartIII/Templating.html. Retrieved 9 May 2013. 

External links