23
Jan
Joomla! is one of the most popular Open Source Content Management Systems. It is used all over the web for everything from simple websites to complex corporate applications. Joomla! is easy to install, simple to manage, and reliable.
The dfTheme which was released both for Wordpress & Drupal CMS is now on Joomla CMS too.

Installation
- Extract the downloaded file into the templates folder of the Joomla folder & set as Default from Joomla Admin.
Demo
Download
This file has been downloaded 6530 times.
Download Joomla (678) v1.0.13 here.
Thanks to Marco Kuiper for converting this theme to Joomla (support on this theme can be found on Marco Kuiper’s site. ). This theme is built for Joomla 1.0.x, tested on Joomla 1.0.13 and is named after Whitesquid which is the demo site of the Drupal version of this theme.
End of Article
09
Jan
While working on one of our projects we came across a requirement which was basically a Link which takes you to the previous page within the same site.
We googled and found a lot of ways which were complex. After giving it a thought, we just figured out that its a very simple logic with a few lines of code.
Well, our requirement was for a Drupal site so got the logic on PHP. Here it goes [sharing is our policy] :
<?php session_start(); ?> <!– Starting a session before the DOCTYPE –>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<a href=”<?php echo $_SESSION[’back’]; ?>“>back</a> <!–The anchor tag that links to the previous page –>
<?php $_SESSION[’back’] = htmlentities($_SERVER[’REQUEST_URI’]); ?> <!– Assigning the current URL to a session variable –>
Please note that first we assign the previous session variable to the anchor tag and only then re-assign the current URL to the session variable which will be read when you move on to the next page.
This being a simple PHP snippet can be used in almost every CMS (PHP based) and sure is a good addon to the accessibility of your site.
End of Article