Skip to content
Snippets Groups Projects
Commit 960dbf1b authored by Adrien Faveraux's avatar Adrien Faveraux
Browse files

pkg constructor php7

parent 29561fb5
No related branches found
No related tags found
No related merge requests found
......@@ -74,10 +74,13 @@ class PBXManager extends CRMEntity {
var $default_order_by = 'customernumber';
var $default_sort_order = 'ASC';
function PBXManager(){
function __construct() {
$this->db = PearDatabase::getInstance();
$this->column_fields = getColumnFields('PBXManager');
}
function PBXManager(){
self::__construct();
}
/**
* Invoked when special actions are performed on the module.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment