Smutty

MVC Framework

View Code: function.linkSelect

Browse: All · Classes · Plugins

1
<?php
2
3
function smutty_function_linkSelectText( $params = null ) {
4
5
static $data;
6
7
if ( $params != null )
8
$data = array(
9
'text' => v( $params, 'text' ),
10
'id' => w( $params, 'id', 'current' ),
11
'class' => v( $params, 'class' )
12
);
13
14
return $data;
15
16
}
17
18
function smutty_function_linkSelect( $params, $smarty ) {
19
smutty_function_linkSelectText( $params );
20
}
21
22
function smarty_function_linkSelect( $params, $smarty ) {
23
24
smutty_function_linkSelect( $params, $smarty );
25
}
26
27
?>

The code shown here is the code that is currently running this site. If you want to view the latest SVN version of the code then go to the Subversion repository.