You are here

public function CmisBrowser::__construct in CMIS API 8

Same name and namespace in other branches
  1. 8.2 src/CmisBrowser.php \Drupal\cmis\CmisBrowser::__construct()
  2. 3.0.x src/CmisBrowser.php \Drupal\cmis\CmisBrowser::__construct()

Constructing the object.

Parameters

type $config:

type $folder_id:

File

src/CmisBrowser.php, line 88

Class

CmisBrowser
Description of CmisBrowser

Namespace

Drupal\cmis

Code

public function __construct($config = '', $folder_id = '') {
  if (!empty($config)) {
    $this
      ->init($config, $folder_id);
  }
}