Joomla 2.5 Templates - $this->baseurl
Written by Brad MarkleIn our quest to review all the PHP code in the index.php file of the Beez2 template, we come to the following code:
$doc->addScript($this->baseurl.'/templates/'.$this->template.'/javascript/md_stylechanger.js', 'text/javascript', true);
In this article, we will focus on $this->baseurl
What is $this->baseurl?
We can view the content of $this->baseurl by adjusting our PHP code as follows:
$doc->addScript($this->baseurl.'/templates/'.$this->template.'/javascript/md_stylechanger.js', 'text/javascript', true);
echo "<pre>" . $this->baseurl . "</pre>"; die();
The result of this code prints the following to the screen:
/joomla25
When we installed Joomla 2.5, we installed it at http://domain.com/joomla25. $this->baseurl contains the location within your domain that Joomla is installed at. Knowing the path to Joomla is useful because you can use it to reference other files and build the URLs to your javascript and css files.
Example usage of $this->baseurl
If you didn't want to hard code a link to your homepage (just in case you change the URL), you can use $this->baseurl to print it instead. In this tutorial, we'll walk you through the steps for using $this->baseurl to set the logo in the Beez2 template to link to your homepage.
To use $this->baseurl in a Joomla 2.5 Template:
- Use your favorite file editor and open for edit:
templates/beez_20/index.php
- At line 118, replace the following line:
<img src="/support/<?php echo $this->baseurl ?>/<?php echo htmlspecialchars($logo); ?>" alt="<?php echo htmlspecialchars($templateparams->get('sitetitle'));?>" />
with...<a href="/support/<? echo $this->baseurl; ?>"><img src="/support/<?php echo $this->baseurl ?>/<?php echo htmlspecialchars($logo); ?>" alt="<?php echo htmlspecialchars($templateparams->get('sitetitle'));?>" /></a>
What we did was put the Joomla site's logo image within an <a></a> tag. Instead of typing the url as:
<a href="http://domain.com"></a>
... we used the following:<a href="/support/<? echo $this->baseurl; ?>"></a>
- Save the file and visit your website to see the changes.
It's that easy! Anywhere within a Joomla 2.5 template, you can use $this->baseurl to print the URL to your Joomla site.
Joomla 2.5 Template Development Tutorial
Latest Questions
Need more Help?
Search
Ask the Community!
Current Customers
| Chat: | Click to Chat Now | E-mail: | support@InMotionHosting.com |
|---|---|---|---|
| Call: | 888-321-HOST (4678) | Ticket: | Submit a Support Ticket |

