Source of file CustomField.php

Size: 0,708 Bytes - Last Modified: 2018-11-03T09:50:48-04:00

G:/AdobeConnectClient/src/CustomField.php

123456789101112131415161718192021222324252627282930313233
<?php

namespace AdobeConnectClient;

/**
 * Adobe Connect's types constants to Custom Field
 *
 * See common elements in {@link https://helpx.adobe.com/adobe-connect/webservices/common-xml-elements-attributes.html#type}
 *
 * @todo Check if this is useful
 *
 */
abstract class CustomField
{
    /**
     * A required custom field for the account.
     * @var string
     */
    const REQUIRED = 'required';

    /**
     * An optional field that is displayed during self-registration.
     * @var string
     */
    const OPTIONAL = 'optional';

    /**
     * An optional field that is hidden during self-registration.
     * @var string
     */
    const OPTIONAL_NO_SELF_REG = 'optional-no-self-reg';
}