コード例 #1
0
<html>
<head>
	<base href="<?php 
echo SA_Url::baseHref();
?>
">
	<style>
		body {
			margin-top: 5px;
			margin-left: 5px;
		}
	</style>
</head>
<body>
<h1>Congratulations, SA is up and running!</h1>
<div><b>Page name</b>: <?php 
echo $this->getName();
?>
</div>
<div><b>Layout</b>: <?php 
echo $this->app->getApplicationDirectory() . 'layouts/' . $this->getLayout();
?>
</div>
<div><b>Page class</b>: <?php 
echo get_class($this);
?>
</div>
<div><b>Find me in</b>: <?php 
echo $this->app->getApplicationDirectory() . 'pages/' . $this->getName() . '.php';
?>
</div>
コード例 #2
0
function smarty_function_sabasehref($params, &$smarty)
{
    return SA_Url::baseHref();
}