<?php
/*
* Common Functions
*
* Copyright(c) 2010, Thomas Shone
* http://www.shone.co.za
*
* List of commonly used functions for the Builder system
*/
function print_t($aArray)
{
echo '<pre>'. print_r($aArray, true) .'</pre>';
}
/**
* Modify this to change how URLs are built in the builder
*
* @param string $sUrl
* @return string
*/
function BuildUrl($sUrl)
{
return $sUrl;
}
?>