For anyone trying to install this when running later versions of PHP it seems you need to make the following change.
PHP Code:
class dirbank {
var $code, $title, $description, $enabled;
// class constructor
function dirbank() {
global $order;
Needs to be changed to
PHP Code:
class dirbank {
var $code, $title, $description, $enabled;
// class constructor
function __construct() {
global $order;