public function CmisElement::__construct in CMIS API 8.2
Same name and namespace in other branches
- 8 src/CmisElement.php \Drupal\cmis\CmisElement::__construct()
- 3.0.x src/CmisElement.php \Drupal\cmis\CmisElement::__construct()
Parameters
string $config: Entity label.
bool $popup: Get true if is a popup.
\Dkd\PhpCmis\DataObjects\AbstractFileableCmisObject $parent: Get AbstractFileableCmisObject class.
string $query: CMIS Query.
string $root_id: CMIS root id.
File
- src/
CmisElement.php, line 92
Class
- CmisElement
- Description of CmisElement.
Namespace
Drupal\cmisCode
public function __construct($config, $popup = FALSE, AbstractFileableCmisObject $parent = NULL, $query = '', $root_id = '') {
$this->config = $config;
$this->popup = $popup;
$this->parent = $parent;
$this->queryString = $query;
$this->rootId = $root_id;
}