@qingjieshouliang
| Current Path : /www/wwwroot/eblliwsm.com/060b04a8/Lib/Widget/ | 
| Current File : /www/wwwroot/eblliwsm.com/060b04a8/Lib/Widget/HrefWidget.class.php | 
<?php
class HrefWidget extends Widget{
	public function render($data){
		$types=strtolower($data['type']);
		switch ($types) {
			case 'new':
				$seourl=C('NEW_URL');
				break;
			case 'download':
				$seourl=C('DOWN_URL');
				break;
			case 'product':
				$seourl=C('PRO_URL');
				break;
			case 'photo':
				$seourl=C('PHO_URL');
				break;
			default:
				break;
		}
		if (C('URL_MODEL')==2) {
			return U('/'.$seourl.'/'.$data['url']);
		}else{
			return U($types.'/index',array('id'=>$data['id']));
		}
		
	}
}
?>