Source of file AclFieldUpdate.php
Size: 1,554 Bytes - Last Modified: 2018-11-03T09:50:48-04:00
G:/AdobeConnectClient/src/Commands/AclFieldUpdate.php
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | <?php namespace AdobeConnectClient\Commands; use AdobeConnectClient\Command; use AdobeConnectClient\ArrayableInterface; use AdobeConnectClient\Converter\Converter; use AdobeConnectClient\Helpers\StatusValidate; use AdobeConnectClient\Helpers\StringCaseTransform as SCT; use AdobeConnectClient\Helpers\ValueTransform as VT; /** * Updates the passed in field-id for the specified SCO, Principal or Account. * * More info see {@link https://helpx.adobe.com/adobe-connect/webservices/acl-field-update.html} */ class AclFieldUpdate extends Command { /** * @var array */ protected $parameters; /** * * @param int $aclId * @param string $fieldId * @param mixed $value * @param ArrayableInterface|null $extraParams */ public function __construct($aclId, $fieldId, $value, ArrayableInterface $extraParams = null) { $this->parameters = [ 'action' => 'acl-field-update', 'acl-id' => $aclId, 'field-id' => SCT::toHyphen($fieldId), 'value' => VT::toString($value), ]; if ($extraParams) { $this->parameters += $extraParams->toArray(); } } /** * @inheritdoc * * @return bool */ protected function process() { $response = Converter::convert( $this->client->doGet( $this->parameters + ['session' => $this->client->getSession()] ) ); StatusValidate::validate($response['status']); return true; } } |