Book Image

Managing eZ Publish Web Content Management Projects

Book Image

Managing eZ Publish Web Content Management Projects

Overview of this book

open-source CMS (content management system) and development framework with functionality for web publishing, intranets, e-commerce, extranets, and web portals. In this book, Martin Bauer of designit.com.au an eZ publish Silver partner, teaches you how to successfully manage and implement an eZ publish web content management project. He shows you how to produce quality results in a repeatable manner with the minimum of effort, and end up with eZ publish solutions that will delight your clients. The book presents strategies, best practices, and techniques for all steps of your eZ publish project, starting from client requirements, through planning, information architecture and content modeling, design considerations, and right up to deployment, client training, maintenance, support, and upgrades.
Table of Contents (20 chapters)
Managing eZ Publish Web Content Management Projects
Credits
About the Author
About the Reviewers
Preface
Index

Templates


The template is the fundamental unit of site design in eZ publish.

It's basically a HTML file that contains logic to define how content is to be displayed. It's similar in concept to most template systems, e.g. Smarty templates. Or for those of you that use straight PHP coding, it would be a PHP file that contains HTML for display of content.

  • All templates have the .tpl extention.

  • A template contains HTML and eZ publish code.

  • The HTML follows the XHTML 1.0 Transitional standard.

The eZ publish code follows their proprietary scripting language, which is quite similar to PHP in syntax. It's pretty much like most scripting languages and doesn't take much to learn.

eZ publish code makes it possible to get content from the database and perform logical functions, e.g. conditional statements (if/then) and looping (while/do).

Templates are combined to form the final HTML output. The main template is pagelayout.tpl, which contains the html, head, and body tags. It dictates the overall look of...