���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/alphpwcp/public_html/us/alphachat/ezcomponents/UserInput/src/structs/definition_element.php
���ѧ٧ѧ�
<?php /** * File containing the ezcInputFormDefinitionElement struct * * @package UserInput * @version 1.4 * @copyright Copyright (C) 2005-2008 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ /** * This struct records information about Input Form definition elements. * * @package UserInput * @version 1.4 * @mainclass */ class ezcInputFormDefinitionElement extends ezcBaseStruct { /** * @var OPTIONAL marks an input field as "optional". Optional input fields * do not throw errors if they are not available while * parsing input variables. */ const OPTIONAL = 0; /** * @var REQUIRED marks an input field as "required". When a required input * variable is not available while parsing input variables, * the __construct will throw the UserInputMissingData * exception. */ const REQUIRED = 1; /** * Whether the field is optional or required. One of the self::OPTIONAL or * self::REQUIRED constants. * * @var int */ public $type = self::OPTIONAL; /** * The name of the filter to use for this definition element. * * @var string */ public $filterName = 'string'; /** * The extra options to this filter. * * @var mixed */ public $options = false; /** * The extra flags to this filter. * * @var mixed */ public $flags = false; /** * A short hint to be shown to the user about the constraint of an input element, e.g. * 'between 0 and 100', 'valid email' or 'no specialchars' * * @var string */ public $hint = ''; /** * Constructs a definition item. * * Constructs the definition item with all its options and flags. * * @param int $type * @param string $filterName * @param mixed $options * @param int $flags * @param string $hint */ public function __construct( $type = ezcInputFormDefinitionElement::OPTIONAL, $filterName = 'string', $options = null, $flags = null, $hint = '' ) { $this->type = $type; $this->filterName = $filterName; $this->options = $options; $this->flags = $flags; $this->hint = $hint; } /** * Returns a new instance of this class with the data specified by $array. * * $array contains all the data members of this class in the form: * array('member_name'=>value). * * __set_state makes this class exportable with var_export. * var_export() generates code, that calls this method when it * is parsed with PHP. * * @param array(string=>mixed) $array * @return ezcInputFormDefinitionElement * @ignore */ public static function __set_state( array $array ) { return new ezcInputFormDefinitionElement( $array['type'], $array['filterName'], $array['options'], $array['flags'], $array['hint'] ); } } ?>
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�