| 1 |
1546
|
Luisehahne
|
<?php
|
| 2 |
|
|
/**
|
| 3 |
|
|
* QuickSkin Extension config
|
| 4 |
|
|
* Print Content of Configuration Parameters
|
| 5 |
|
|
*
|
| 6 |
|
|
* Usage Example:
|
| 7 |
|
|
* Content: $_CONFIG['webmaster'] = 'philipp@criegern.de';
|
| 8 |
|
|
* Template: Please Contact Webmaster: {config:"webmaster"}
|
| 9 |
|
|
* Result: Please Contact Webmaster: philipp@criegern.de
|
| 10 |
|
|
*
|
| 11 |
|
|
* @author Andy Prevost andy@codeworxtech.com - original by Philipp v. Criegern philipp@criegern.de
|
| 12 |
|
|
*/
|
| 13 |
|
|
function qx_config ( $param ) {
|
| 14 |
|
|
global $_CONFIG;
|
| 15 |
|
|
|
| 16 |
|
|
return $_CONFIG[$param];
|
| 17 |
|
|
}
|
| 18 |
|
|
|
| 19 |
|
|
?>
|