Clinic::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        $this->module_path = dirname(__FILE__) . '/modules/';
        $this->include_path = dirname(__FILE__) . '/include/';
        $this->categories = array_merge(json_decode(file_get_contents('./include/category.json'), true), $GLOBALS['clinic_register_cate']);
        $this->scan_dir();
    }