@qingjieshouliang M1n1 Shira0ka

M1n1 Shira0ka File Manager

Current Path : /www/wwwroot/eblliwsm.com/060b04a8/Lib/Widget/
Upload File :
Current File : /www/wwwroot/eblliwsm.com/060b04a8/Lib/Widget/AboutWidget.class.php

<?php
class AboutWidget extends Widget{
	public function render($data){
		$aboutdata=M('List')->field('id,url,contents')->where("id = ".$data['id']." and type='page'")->find();
		$len=$data['len'];
		$about=strip_tags($aboutdata['contents']);
		$about=strlen($about)<=$len ? $about : (mb_substr($about,0,$len,'utf-8')."...");
		$data['contents']=$about;
		$data['url']=$aboutdata['url'];
		$content=$this->renderFile('about',$data);
		return $content;
	}	
}
?>

GO Party By You