Lately.php
537 Bytes
<?php
class QLibView_Lately
{
/**
* 搜索列表页面的最近浏览记录
*/
public static function search($limit=6)
{
// self::display('list');
include __DIR__ . '/Template/Lately/list.phtml';
}
/**
* 选择模板
* @param $template
* @return bool|mixed
*/
protected static function display($template)
{
if (empty($template)) {
return false;
}
return include __DIR__ . '/Template/Lately/' . $template . '.phtml';
}
}