Project

General

Profile

1
<?php
2
  /**
3
  * QuickSkin Extension session
4
  * Print Content of Session variables
5
  *
6
  * Usage Example:
7
  * Content:  $_SESSION['userName']  =  'Philipp von Criegern';
8
  * Template: Current User: {session:"userName"}
9
  * Result:   Current User: Philipp von Criegern
10
  *
11
  * @author Andy Prevost andy@codeworxtech.com - original by Philipp v. Criegern philipp@criegern.de
12
  */
13
  function qx_session ( $param ) {
14
    return $_SESSION[$param];
15
  }
(35-35/43)