7.8 添加模板文件
模板是数据处理后的最终展现平台,也是用户操作与感知的入口。Album模块使用的模板有4个:index.phtml , add.phtml , edit.phtml , delete.phtml , paginator.phtml 分别 列表、添加、修改、删除、分页导航
7.8.1 列表模板 index.phtml
添加文件:/module/Album/view/album/album/index.phtml,内容如下:
translate("Title") ?>
translate("Artist") ?>
translate("Add new album") ?>
escapeHtml($album->title); ?>
escapeHtml($album->artist); ?>
translate("Edit") ?>
translate("Delete") ?>
paginationControl($this->paginator,'sliding',array('partial/paginator.phtml','Album'),array('route'=>'album'));
?>
7.8.2 列表模板 add.phtml
添加文件:/module/Album/view/album/album/add.phtml,内容如下:
form;
$form->setAttribute('action',$this->url('album',array('action'=>'add')));
echo $this->form()->openTag($form);
echo $this->formCollection($this->form);
echo $this->form()->closeTag();
?>
7.8.3 列表模板 edit.phtml
添加文件:/module/Album/view/album/album/edit.phtml,内容如下:
form;
$form->setAttribute('action',$this->url('album',array('action'=>'edit','id'=>$this->id)));
echo $this->form()->openTag($form);
echo $this->formCollection($this->form);
echo $this->form()->closeTag();
?>
7.8.4 列表模板 delete.phtml
添加文件:/module/Album/view/album/album/delete.phtml,内容如下:
headTitle($title);
?>
escapeHtml($title); ?>
Are you sure that you want to delete
'
escapeHtml($album->title); ?>' by
'
escapeHtml($album->artist); ?>'?
url('album', array(
'action' => 'delete',
'id' => $this->id,
));
?>
7.8.5 列表模板 paginator.phtml
添加文件:/module/Album/view/partial/paginator.phtml,内容如下:
pageCount): ?>
经过以上的准备工作,接下可以通过 http://localhost/album 来打开album 列表的,打开的页面结果如下所示:
header
Title
Artist
Add new album
First album
artist01
EditDelete
Second album
artist02
EditDelete
Third album
artist03
EditDelete
fourth album
artist04
EditDelete
Fifth album
artist05
EditDelete
<< 1 2 >>
footer
点击 列表上面的Add new album 可以进行 album 添加,页面结果如下所示:
header
窗体顶端
Title窗体底端
Artist
footer
点击列表右边的 Edit 可以对album 的信息进行修改,页面结果如下所示:
header
窗体顶端
Title窗体底端
Artist
footer
点击列表右边的 Delete 可以对album 记录进行删除,确认删除页面如下所示:
header
Delete album
Are you sure that you want to delete 'First album' by 'artist01'?
窗体顶端
窗体底端
footer
到此已经完成了对整个Album模块的的构造及功能的实现,此实例虽然没有实际的应用意义,但他已经完整的展示了在ZF2一个完整模块的存在形式,以及与其他模块同时并存且同时协同工作的具体应用,在进行具体项目开发的时候可以借鉴或参考此例以便开发出不同功能的模块,使用项目模块能够共同协同工作。