abstract class BaseControl extends Component implements IControl

Base class that implements the basic functionality common to form controls.

Properties

static string $idMask
mixed $value
Html read-only $control
Html read-only $label
bool $disabled
mixed $htmlId
string|object $caption
bool $omitted
bool $required
Form read-only $form
string read-only $htmlName
Html read-only $controlPrototype
Html read-only $labelPrototype
bool read-only $filled
array read-only $errors
array read-only $options
string read-only $error

Methods

__construct(string|object $caption = null)

No description

setCaption(object|string $caption)

Sets textual caption or label.

object|string
getCaption()

No description

Form|null
getForm(bool $throw = true)

Returns form.

void
loadHttpData()

Loads HTTP data.

mixed
getHttpData($type, string $htmlTail = null)

Loads HTTP data.

string
getHtmlName()

Returns HTML name of control.

setValue(mixed $value)

Sets control's value.

mixed
getValue()

Returns control's value.

bool
isFilled()

Is control filled?

setDefaultValue($value)

Sets control's default value.

setDisabled(bool $value = true)

Disables or enables control.

bool
isDisabled()

Is control disabled?

setOmitted(bool $value = true)

Sets whether control value is excluded from $form->getValues() result.

bool
isOmitted()

Is control value excluded from $form->getValues() result?

Html|string
getControl()

Generates control's HTML element.

Html|string|null
getLabel(string|object $caption = null)

Generates label's HTML element.

Html|null
getControlPart()

No description

Html|null
getLabelPart()

No description

getControlPrototype()

Returns control's HTML element template.

getLabelPrototype()

Returns label's HTML element template.

setHtmlId(string|bool|null $id)

Changes control's HTML id.

mixed
getHtmlId()

Returns control's HTML id.

setHtmlAttribute(string $name, $value = true)

Changes control's HTML attribute.

setAttribute(string $name, $value = true) deprecated

No description

setTranslator(ITranslator|null $translator)

Sets translate adapter.

ITranslator|null
getTranslator()

Returns translate adapter.

mixed
translate($value, ...$parameters)

Returns translated string.

addRule(callable|string $validator, string|object $errorMessage = null, $arg = null)

Adds a validation rule.

addCondition($validator, $value = null)

Adds a validation condition a returns new branch.

addConditionOn(IControl $control, $validator, $value = null)

Adds a validation condition based on another control a returns new branch.

getRules()

No description

setRequired(bool|string|object $value = true)

Makes control mandatory.

bool
isRequired()

Is control mandatory?

void
validate()

Performs the server side validation.

void
addError(string|object $message, bool $translate = true)

Adds error message to the list.

string|null
getError()

Returns errors corresponding to control.

array
getErrors()

Returns errors corresponding to control.

bool
hasErrors()

No description

void
cleanErrors()

No description

static void
enableAutoOptionalMode() deprecated

No description

setOption($key, $value)

Sets user-specific option.

mixed
getOption($key, $default = null)

Returns user-specific option.

array
getOptions()

Returns user-specific options.

__call(string $name, array $args)

No description

static void
extensionMethod(string $name, $callback)

No description

Details

at line 81
__construct(string|object $caption = null)

No description

Parameters

string|object $caption

at line 101
BaseControl setCaption(object|string $caption)

Sets textual caption or label.

Parameters

object|string $caption

Return Value

BaseControl

at line 109
object|string getCaption()

No description

Return Value

object|string

at line 118
Form|null getForm(bool $throw = true)

Returns form.

Parameters

bool $throw

Return Value

Form|null

at line 127
void loadHttpData()

Loads HTTP data.

Return Value

void

at line 137
protected mixed getHttpData($type, string $htmlTail = null)

Loads HTTP data.

Parameters

$type
string $htmlTail

Return Value

mixed

at line 146
string getHtmlName()

Returns HTML name of control.

Return Value

string

at line 160
IControl setValue(mixed $value)

internal  
 

Sets control's value.

Parameters

mixed $value

Return Value

IControl

at line 171
mixed getValue()

Returns control's value.

Return Value

mixed

at line 180
bool isFilled()

Is control filled?

Return Value

bool

at line 191
BaseControl setDefaultValue($value)

Sets control's default value.

Parameters

$value

Return Value

BaseControl

at line 206
BaseControl setDisabled(bool $value = true)

Disables or enables control.

Parameters

bool $value

Return Value

BaseControl

at line 220
bool isDisabled()

Is control disabled?

Return Value

bool

at line 230
BaseControl setOmitted(bool $value = true)

Sets whether control value is excluded from $form->getValues() result.

Parameters

bool $value

Return Value

BaseControl

at line 240
bool isOmitted()

Is control value excluded from $form->getValues() result?

Return Value

bool

at line 253
Html|string getControl()

Generates control's HTML element.

Return Value

Html|string

at line 272
Html|string|null getLabel(string|object $caption = null)

Generates label's HTML element.

Parameters

string|object $caption

Return Value

Html|string|null

at line 283
Html|null getControlPart()

No description

Return Value

Html|null

at line 289
Html|null getLabelPart()

No description

Return Value

Html|null

at line 298
Html getControlPrototype()

Returns control's HTML element template.

Return Value

Html

at line 307
Html getLabelPrototype()

Returns label's HTML element template.

Return Value

Html

at line 318
BaseControl setHtmlId(string|bool|null $id)

Changes control's HTML id.

Parameters

string|bool|null $id

Return Value

BaseControl

at line 329
mixed getHtmlId()

Returns control's HTML id.

Return Value

mixed

at line 346
BaseControl setHtmlAttribute(string $name, $value = true)

Changes control's HTML attribute.

Parameters

string $name
$value

Return Value

BaseControl

at line 366
BaseControl setAttribute(string $name, $value = true) deprecated

deprecated use setHtmlAttribute()

No description

Parameters

string $name
$value

Return Value

BaseControl

at line 379
BaseControl setTranslator(ITranslator|null $translator)

Sets translate adapter.

Parameters

ITranslator|null $translator

Return Value

BaseControl

at line 389
ITranslator|null getTranslator()

Returns translate adapter.

Return Value

ITranslator|null

at line 404
mixed translate($value, ...$parameters)

Returns translated string.

Parameters

$value
...$parameters

Return Value

mixed

at line 427
BaseControl addRule(callable|string $validator, string|object $errorMessage = null, $arg = null)

Adds a validation rule.

Parameters

callable|string $validator
string|object $errorMessage
$arg

Return Value

BaseControl

at line 438
Rules addCondition($validator, $value = null)

Adds a validation condition a returns new branch.

Parameters

$validator
$value

Return Value

Rules

new branch

at line 448
Rules addConditionOn(IControl $control, $validator, $value = null)

Adds a validation condition based on another control a returns new branch.

Parameters

IControl $control
$validator
$value

Return Value

Rules

new branch

at line 454
Rules getRules()

No description

Return Value

Rules

at line 465
BaseControl setRequired(bool|string|object $value = true)

Makes control mandatory.

Parameters

bool|string|object $value

Return Value

BaseControl

at line 475
bool isRequired()

Is control mandatory?

Return Value

bool

at line 484
void validate()

Performs the server side validation.

Return Value

void

at line 498
void addError(string|object $message, bool $translate = true)

Adds error message to the list.

Parameters

string|object $message
bool $translate

Return Value

void

at line 507
string|null getError()

Returns errors corresponding to control.

Return Value

string|null

at line 516
array getErrors()

Returns errors corresponding to control.

Return Value

array

at line 522
bool hasErrors()

No description

Return Value

bool

at line 528
void cleanErrors()

No description

Return Value

void

at line 535
static void enableAutoOptionalMode() deprecated

deprecated

No description

Return Value

void

at line 548
BaseControl setOption($key, $value)

Sets user-specific option.

Parameters

$key
$value

Return Value

BaseControl

at line 563
mixed getOption($key, $default = null)

Returns user-specific option.

Parameters

$key
$default

Return Value

mixed

at line 572
array getOptions()

Returns user-specific options.

Return Value

array

at line 581
__call(string $name, array $args)

No description

Parameters

string $name
array $args

Exceptions

MemberAccessException

at line 594
static void extensionMethod(string $name, $callback)

No description

Parameters

string $name
$callback

Return Value

void