$templates = array( # APP: MEMBERS 'showuser' => array( 'out' => array( 'showuser=(.+?)(&|$)', 'user/$1/#{__title__}$2' ), 'in' => array( "/user/(\d+?)/", array( 'showuser', 1 ) ) ), # APP: FORUMS 'showforum' => array( 'out' => array( 'showforum=(.+?)(&|$)', 'forum/$1/#{__title__}$2' ), 'in' => array( "/forum/(\d+?)/" , array( 'showforum', 1 ) ) ), 'showtopic' => array( 'out' => array( 'showtopic=(.+?)(&|$)', 'topic/$1/#{__title__}$2' ), 'in' => array( "/topic/(\d+?)/", array( 'showtopic', 1 ) ) ), );