gusucode.com > 同城苏州黄页系统php源码程序 > lib/class.webPge/dtl_card.class.php

    <?
if( !class_exists('field') )
	include_once( $root_path.'lib/field.class.php' );
if( !class_exists('column') )
	include_once( $root_path.'lib/column.class.php' );
if( !class_exists('detailPge') )
	include_once( $root_path.'lib/detailPge.class.php' );

class dtl_card extends detailPge
{
	var $name				= 'card';
	var $formName			= 'theform';
	var $dbtable			= 'yp_card';

	var $primary_key		= 'id';
	var $status_column_name	= 'is_open';
	var $parent_column_name	= 'parent';


	# 构造函数
	function dtl_card(){
		# 调用父类的构造函数,初始化 父类中的成员
		$my_parent_name=get_parent_class(__CLASS__);
		$this->$my_parent_name();
	
		# 初始化本网页类的 栏位 和 数据库字段
		$this->init_card();
	
	}
	




	function init_card()
	{
		##############################
		#
		# 初始化 栏位 和 数据库字段
		#

		# 创建 name 栏位 --- ---
		$this -> add_field ('name');
		# 创建 tel 栏位 --- ---
		$this -> add_field ('tel');
		# 创建 bus 栏位 --- ---
		$this -> add_field ('bus');
		# 创建 address 栏位 --- ---
		$this -> add_field ('address');
		# 创建 openTime 栏位 --- ---
		$this -> add_field ('openTime');
		# 创建 price 栏位 --- ---
		$this -> add_field ('price');
		# 创建 parking 栏位 --- ---
		$this -> add_field ('parking');
		# 创建 intro 栏位 --- ---
		$this -> add_field ('intro');
		# 创建 home 栏位 --- ---
		$this -> add_field ('home');
		# 创建 author 栏位 --- ---
		$this -> add_field ('author');
		# 创建 createTime 栏位 --- ---
		$this -> add_field ('createTime');
		# 创建 titlePic 栏位 --- ---
		$this -> add_field ('titlePic');
		# 创建 topclass 栏位 --- ---
		$this -> add_field ('topclass');
		# 创建 lowerclass 栏位 --- ---
		$this -> add_field ('lowerclass');
		# 创建 ViewCnt 栏位 --- ---
		$this -> add_field ('ViewCnt');


		# 创建 name 字段 --- ---
		$this -> add_column ('name');
		# 创建 tel 字段 --- ---
		$this -> add_column ('tel');
		# 创建 address 字段 --- ---
		$this -> add_column ('address');
		# 创建 bus 字段 --- ---
		$this -> add_column ('bus');
		# 创建 openTime 字段 --- ---
		$this -> add_column ('openTime');
		# 创建 price 字段 --- ---
		$this -> add_column ('price');
		# 创建 parking 字段 --- ---
		$this -> add_column ('parking');
		# 创建 intro 字段 --- ---
		$this -> add_column ('intro');
		# 创建 home 字段 --- ---
		$this -> add_column ('home');
		# 创建 author 字段 --- ---
		$this -> add_column ('author');
		# 创建 createTime 字段 --- ---
		$this -> add_column ('createTime');
		# 创建 titlePic 字段 --- ---
		$this -> add_column ('titlePic');
		# 创建 topclass 字段 --- ---
		$this -> add_column ('topclass');
		# 创建 lowerclass 字段 --- ---
		$this -> add_column ('lowerclass');
		# 创建 ViewCnt 字段 --- ---
		$this -> add_column ('ViewCnt');

	}
}
?>