@@ 162-167 (lines=6) @@ | ||
159 | } |
|
160 | ||
161 | // handle allowable actions |
|
162 | if ($objectData->getAllowableActions() !== null) { |
|
163 | $this->allowableActions = $objectData->getAllowableActions(); |
|
164 | $this->extensions[(string) ExtensionLevel::cast( |
|
165 | ExtensionLevel::ALLOWABLE_ACTIONS |
|
166 | )] = $objectData->getAllowableActions()->getExtensions(); |
|
167 | } |
|
168 | ||
169 | // handle renditions |
|
170 | foreach ($objectData->getRenditions() as $rendition) { |
|
@@ 175-179 (lines=5) @@ | ||
172 | } |
|
173 | ||
174 | // handle ACL |
|
175 | if ($objectData->getAcl() !== null) { |
|
176 | $this->acl = $objectData->getAcl(); |
|
177 | $this->extensions[(string) ExtensionLevel::cast(ExtensionLevel::ACL)] = $objectData->getAcl( |
|
178 | )->getExtensions(); |
|
179 | } |
|
180 | ||
181 | // handle policies |
|
182 | if ($objectData->getPolicyIds() !== null) { |