. ***********************************************************************/ class fa2_2 { var $version = '2.2'; // version installed var $description = 'Version 2.2'; var $sql = 'alter2.2.sql'; // // Install procedure. All additional changes // not included in sql file should go here. // function install($pref, $force) { global $db; return true; } // // Checking before install // function pre_check($pref) { return true; // true when ok, fail otherwise } // // Test if patch was applied before. // function installed($pref) { if (check_table($pref, 'company', 'default_delivery_required')) return false; return true; } }; $install = new fa2_2; ?>