"me_code" , "me_menu" => "me_menu" , "me_file" => "me_file" , "me_url" => "me_url" , "me_description" => "me_description" , "me_parameter" => "me_parameter" , "me_javascript" => "me_javascript" , "me_type" => "me_type" ); protected $type=array( "me_code" => "text" , "me_menu" => "text" , "me_file" => "text" , "me_url" => "text" , "me_description" => "text" , "me_parameter" => "text" , "me_javascript" => "text" , "me_type" => "text" ); function __construct($p_id=null) { global $cn; parent::__construct($cn,$p_id); } static function test_me() { $a=new Menu_Ref_sql(); $a->setp('me_code','test'); $a->insert(); $a->setp('me_menu','update'); $a->update(); $a->delete(); $b=$a->collect_objects(' where me_type = $1',array('PR')); echo "size ".count($b); $a->verify(); $a->setp('me_code','ACH'); $a->load(); echo $a->get_info(); } } ?>