Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
TYPO3 Extension Development

You're reading from   TYPO3 Extension Development

Arrow left icon
Product type Paperback
Published in Sep 2008
Publisher
ISBN-13 9781847192127
Length 232 pages
Edition Edition
Languages
Tools
Concepts
Arrow right icon
Author (1):
Arrow left icon
Dmitry Dulepov Dmitry Dulepov
Author Profile Icon Dmitry Dulepov
Dmitry Dulepov
Arrow right icon
View More author details
Toc

Templating


One feature of a successful website is its unique look. A website designer should be able to modify the website appearance according to the website's purpose. It means that the plugin output should be modifiable as well. This is achieved by making the plugin output using templates.

TYPO3 has built-in support for templates. A template is a normal HTML file where data and text strings are replaced with special markers. A marker usually looks like this: ###MARKER###. There are two types of markers:

  • Plain marker (replaces the marker by data)

  • Subsection marker (replaces everything between two markers by data)

Here is an example of a template:

<!DOCTYPE html PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Sample template</title>
</head>
<body>
<h1>Results template</h1>
<!-- ###RESULTS### begin -->
<div class="tx_myext_results">
###TEXT_RESULTS###:
<!-- ###RESULT_SUB...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image