/usr/share/raintpl/example.php is in raintpl 2.7.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | <?php
//include the RainTPL class
include "inc/rain.tpl.class.php";
raintpl::configure("base_url", null );
raintpl::configure("tpl_dir", "tpl/" );
raintpl::configure("cache_dir", "tmp/" );
//initialize a Rain TPL object
$tpl = new RainTPL;
//variable assign example
$variable = "Hello World!";
$tpl->assign( "variable", $variable );
//loop example
$week = array( 'Monday', 'Tuersday', 'Wednesday', 'Friday', 'Saturday', 'Sunday' );
$tpl->assign( "week", $week );
//loop example 2
$user = array( array( 'name'=>'Jupiter', 'color'=>'yellow'),
array( 'name'=>'Mars', 'color'=>'red' ),
array( 'name'=>'Earth', 'color'=>'blue' ),
);
$tpl->assign( "user", $user );
//loop example with empty array
$tpl->assign( "empty_array", array() );
$info = array( 'title'=>'Rain TPL Example',
'copyright' => 'Copyright 2006 - 2011 Rain TPL<br>Project By Rain Team' );
$tpl->assign( $info );
global $global_variable;
$global_variable = 'This is a global variable';
// you can draw the output
// $tpl->draw( 'page' );
// or the template output string by setting $return_string = true:
$html = $tpl->draw( 'page', $return_string = true );
// and then draw the output
echo $html;
class str{
function cut($t){
return substr($t, 1, 2 );
}
}
?>
|