本文整理汇总了PHP中site::template方法的典型用法代码示例。如果您正苦于以下问题:PHP site::template方法的具体用法?PHP site::template怎么用?PHP site::template使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类site
的用法示例。
在下文中一共展示了site::template方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
echo zotop::url("system/template/select/{$field}", array('dir' => $dir . '/' . $folder));
?>
"><?php
echo $folder;
?>
</a></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<?php
}
foreach ($files as $file) {
$filepath = site::template($dir . '/' . $file);
$filedata = file::data($filepath);
$filesize = file::size($filepath, true);
?>
<tr class="item file">
<td class="w20 center"><span class="zotop-icon zotop-icon-file"></span></td>
<td class="w120"><input type="hidden" value="<?php
echo empty($dir) ? $file : $dir . '/' . $file;
?>
"/><?php
echo $file;
?>
</td>
<td><?php
echo $filedata['description'] ? $filedata['description'] : $filedata['title'];
?>
示例2: actionDelete
public function actionDelete($file)
{
$file = empty($file) ? zotop::get('file') : $file;
$file = trim(url::decode($file), '/');
$filepath = site::template($file);
if (file::delete($filepath)) {
msg::success('删除成功', url::referer());
}
msg::error('删除失败');
}