Book Image

CMS Made Simple 1.6: Beginner's Guide

Book Image

CMS Made Simple 1.6: Beginner's Guide

Overview of this book

CMS Made Simple is a an open source content management system that allows rapid website development in a fraction of the normal time, avoiding hours of coding by providing modules and 3rd Party add-ons. With this book in hand you will be able to harness the power of this modular and extendable content management system at your fingertips.This guide for CMS Made Simple is based on practical and working solutions allowing you to understand how this powerful and simple application can support you in your daily work. The workshop helps you create engaging, effective, and easy-to-use CMS websites for businesses, clubs, or organizations.This is a step- by-step case study, aimed at helping you build a complete professional website with CMS Made Simple. You can take a ready-to-use template or implement your own custom design, enrich the website with features like a photo gallery, an e-commerce solution with PayPal checkout, and forms of any complexity or popular JQuery effects and finish it off by optimizing it for search engines. The useful HTML and CSS code snippets are optimized and can be easily adapted for your own projects. Chapter by chapter you will put yourself in the role of web designer, developer, administrator, and business manager, thus learning every aspect needed for building rich websites that are very simple to manage.
Table of Contents (17 chapters)
CMS Made Simple 1.6
Credits
About the Author
About the Reviewers
Preface

Time for action - creating your own user-defined tag


Imagine you would like to countdown the number of days till the New Year on the start page. The days should be counted automatically and displayed at the place where the user-defined tag is added in the content.

  1. 1. In the admin console, click on Extensions | User Defined Tags.

  2. 2. At the bottom of the page, click on Add User Defined Tag.

  3. 3. Enter countdown as the name of the new user-defined tag and the following code snippet into the field Code:

    $target = mktime(0, 0, 0, 1, 1, 2011);
    $diff = $target time();
    $days = floor($diff/86400);
    echo $days;
    
  4. 4. Click on Submit.

  5. 5. Open any page of your website, and add the user-defined tag, shown as follows:

    It is {countdown} days until 1. January 2011
    
  6. 6. Click on Apply, and see the result on the page.

What just happened?

You have created your own user-defined tag (UDT) in CMS Made Simple. This tag automatically shows the number of days until the date given in the first line of the PHP script (January 1...