Before we get into styling our Joomla 3.0 template, we will add the last piece of PHP code that we need, which is the checking of JEXEC variable.

The concept of defining JEXEC hasn't changed since Joomla 2.5. Simply put, JEXEC is a variable defined in your php files that prevents users on the web from accessing those files directly. Technically they can access your template's index.php file through their browser, but execution of the file will end immediately because JEXEC is not defined within the template. If you don't understand the technical reasons as to how this works, it's not a big concern, but just make sure you have the code in place.

 

Use of JEXEC in Joomla 2.5 vs. Joomla 3.0

The following is how JEXEC is using in Joomla 2.5 vs. Joomla 3.0

JEXEC in Joomla 2.5JEXEC in Joomla 3.0
defined('_JEXEC') or die;
defined('_JEXEC') or die;

As you can see, the use of JEXEC in the latest two versions of Joomla has not changed.

 

Adding JEXEC to a Joomla 3.0 Template

To incorporate JEXEC into the Joomla 3.0 Template that we are creating, we will simply add the necessary one line of code to the top of our index.php file. Before you can see the before and after of the top portion of the template's index.php file.

Before

<?php

$doc = JFactory::getDocument();

$doc->addStyleSheet($this->baseurl . '/media/jui/css/bootstrap.min.css');
$doc->addStyleSheet($this->baseurl . '/media/jui/css/bootstrap-responsive.css');
$doc->addStyleSheet('templates/' . $this->template . '/css/style.css');
$doc->addScript('/templates/' . $this->template . '/js/main.js', 'text/javascript');

?>

After

<?php


defined('_JEXEC') or die;


$doc = JFactory::getDocument();

$doc->addStyleSheet($this->baseurl . '/media/jui/css/bootstrap.min.css');
$doc->addStyleSheet($this->baseurl . '/media/jui/css/bootstrap-responsive.css');
$doc->addStyleSheet('templates/' . $this->template . '/css/style.css');
$doc->addScript('/templates/' . $this->template . '/js/main.js', 'text/javascript');

?>
Like this Article?

Login to comment.

Your Opinion Matters

... but we need to know what you're thinking!

I'm Brad Markle, your friendly Community Support technician, and I wrote the article you're looking at now. I like to think it's perfect, but I'm sure you have some suggestions. Please, let me know what they are!

Feedback
Your Email Address
Because we'd like to talk with you!

Latest Questions

If you need some help, submit your question to our Community!
We guarantee a response within 60 minutes (8am - 9pm EST, Monday - Friday)
Ask a Question!
Recent Questions
  1. Parked domain not redirecting to main after Domain Change
  2. Why do I have 404 pages in my AwStats?
  3. Changing the site name in joomla 3.0?

Need more Help?

Search

Ask the Community!

Get help with your questions from our community of like-minded hosting users and InMotion Hosting Staff.

Current Customers

Chat: Click to Chat Now E-mail: support@InMotionHosting.com
Call: 888-321-HOST (4678) Ticket: Submit a Support Ticket

Not a Customer?

Get web hosting from a company that is here to help. Sign up today!