www.gusucode.com > IMGCMS php图片管理系统 v1.0源码程序 > imgcms_v1.0/程序文件-正式版V1.0/model/Adsense.php

    <?php
/**
 * 广告
 * @author 许仙 <QQ:1216560669 >
 * @time 2011-12-15 15:51
 * @version 1.0
 */
class Adsense_Model extends Model {
	
	public function __construct() {
		parent::__construct();	
		$this->setTable('#@_adsense', 'id');
	}
	
	public function getByTitle($title) {
		$res = $this->db->table('#@_adsense')->where(array('title' => $title))->getOne();
		if ($res) {
			$res['content'] = str_replace('{$web_url}', Wee::$config['web_url'], $res['content']);
			$res['content'] = str_replace('{$web_path}', Wee::$config['web_path'], $res['content']);
		}
		return $res;	
	}
}