<?php
/**
* QuickSkin Extension config
* Print Content of Configuration Parameters
*
* Usage Example:
* Content: $_CONFIG['webmaster'] = 'hide@address.com';
* Template: Please Contact Webmaster: {config:"webmaster"}
* Result: Please Contact Webmaster: hide@address.com
*
* @author Andy Prevost hide@address.com - original by Philipp v. Criegern hide@address.com
*/
function qx_config ( $param ) {
global $_CONFIG;
return $_CONFIG[$param];
}
?>