gusucode.com > 同城苏州黄页系统php源码程序 > lib/class.webPge/dtl_uppic.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_uppic extends detailPge
{
	var $name				= 'uppic';
	var $formName			= 'theform';
	var $dbtable			= 'yp_picture';

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


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




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

		# 创建 file 栏位 --- ---
		$this -> add_field ('file');
		# 创建 pic_intro 栏位 --- ---
		$this -> add_field ('pic_intro');
		# 创建 author 栏位 --- ---
		$this -> add_field ('author');


		# 创建 file 字段 --- ---
		$this -> add_column ('file');
		# 创建 pic_intro 字段 --- ---
		$this -> add_column ('pic_intro');
		# 创建 author 字段 --- ---
		$this -> add_column ('author');

	}
}
?>