Function Reference: geodir_payment_after_custom_detail_table_create

Summary

This function has not been documented yet.

Source Code

function geodir_payment_after_custom_detail_table_create($post_type, $detail_table){
	
	$post_types = geodir_get_posttypes();
	
	if(in_array($post_type, $post_types)){
		$meta_field_add = " ENUM( 'false', 'true' ) NOT NULL ";
		geodir_add_column_if_not_exist( $detail_table, "expire_notification", $meta_field_add );
	}
	
}