テンプレート置換とシステム定数
<frameset rows="20%,*">
<frame src="__URL__/top" name="top" /> <!-- src , .html php -->
<frameset cols="20%,*">
<frame src="__URL__/left" name="left" />
<frame src="__URL__/right" name="right" />
</frameset>
</frameset><noframes></noframes>
<?php
// ,
class IndexAction extends Action{
public function index(){
$this->display();
}
function left(){
$this->display();
}
function top(){
$this->assign("admin","ljfbest");
$this->display();
}
function right(){
$this->display();
}
}
?>