. // class MaintenanceModule extends BaseModule { // override variables var $CATEGORY_NAME = "Support Data"; var $CATEGORY_VERSION = "0.2.1"; // Variable: $this->order_field // // Defines the ORDER BY clause for built-in functions. This // should be present in all child modules. It is set to 'id' // by default, which is horrible behavior, and should be // overridden in all child classes. // var $order_field = 'id'; // Variable: $this->form_vars // // List of form variables which need to be used in the // add or modify forms. // // Example: // // $this->form_vars = array ( 'ptfname', 'ptlname' ); // // See Also: //