WidgetFile
extends WidgetFile
in package
Class created by Core/Internal/PluginsDeploy
Table of Contents
Properties
- $accept : string
- $autocomplete : bool
- $class : string
- $fieldclick : string
- $fieldname : string
- $icon : string
- $id : string
- Identifies the object with a defined name in the view
- $multiple : bool
- $name : string
- Name defined in the view as key
- $onclick : string
- $options : array<string|int, mixed>
- $readonly : string
- $required : bool
- $tabindex : int
- $uniqueId : int
- $value : mixed
- $valueOnClick : mixed
Methods
- __construct() : mixed
- edit() : string
- getColorFromOption() : string
- Calculate color from option configuration
- getLevel() : int
- getToken() : string
- getType() : string
- Devuelve el tipo de widget.
- gridFormat() : array<string|int, mixed>
- inputHidden() : string
- plainText() : string
- processFormData() : mixed
- setCustomValue() : mixed
- Asigna un valor fijo personalizado al widget.
- setLevel() : mixed
- setToken() : mixed
- showTableTotals() : bool
- tableCell() : string
- applyOperatorFromOption() : bool
- assets() : mixed
- Añade los recursos necesarios al gestor de assets.
- colorToClass() : string
- combineClasses() : string
- css() : string
- Returns equivalent css class to $class. To extend in plugins.
- escapeHtml() : string
- Normaliza entidades HTML existentes y escapa el valor para insertarlo en contexto HTML.
- getMaxFileUpload() : int
- Return the max file size that can be uploaded.
- getUniqueId() : int
- inputHtml() : string
- inputHtmlExtraParams() : string
- loadOptions() : void
- onclickHtml() : string
- readonly() : bool
- setValue() : mixed
- show() : string
- tableCellClass() : string
Properties
$accept
public
string
$accept
$autocomplete
public
bool
$autocomplete
Indica si el navegador puede autocompletar el campo.
$class
public
string
$class
$fieldclick
public
string
$fieldclick
Campo alternativo usado para generar enlaces.
$fieldname
public
string
$fieldname
Nombre del campo del modelo asociado al widget.
$icon
public
string
$icon
Clase CSS del icono mostrado junto al widget.
$id
Identifies the object with a defined name in the view
public
string
$id
$multiple
public
bool
$multiple
$name
Name defined in the view as key
public
string
$name
$onclick
public
string
$onclick
Controlador o URL usado al hacer clic en el valor.
$options
public
array<string|int, mixed>
$options
= []
Opciones configuradas para el widget.
$readonly
public
string
$readonly
Modo de solo lectura del widget.
$required
public
bool
$required
Indica si el campo es obligatorio.
$tabindex
public
int
$tabindex
Orden de tabulación del campo.
$uniqueId
protected
static int
$uniqueId
= -1
$value
protected
mixed
$value
Valor actual del widget.
$valueOnClick
protected
mixed
$valueOnClick
= null
Valor alternativo usado en el enlace del widget.
Methods
__construct()
public
__construct(array<string|int, mixed> $data) : mixed
Parameters
- $data : array<string|int, mixed>
edit()
public
edit(object $model[, string $title = '' ][, string $description = '' ][, string $titleurl = '' ]) : string
Parameters
- $model : object
- $title : string = ''
- $description : string = ''
- $titleurl : string = ''
Return values
stringgetColorFromOption()
Calculate color from option configuration
public
getColorFromOption(array<string|int, string> $option, mixed $value, string $prefix) : string
Parameters
- $option : array<string|int, string>
- $value : mixed
- $prefix : string
Return values
stringgetLevel()
public
static getLevel() : int
Return values
intgetToken()
public
static getToken() : string
Return values
stringgetType()
Devuelve el tipo de widget.
public
getType() : string
Return values
string —Tipo del widget.
gridFormat()
public
gridFormat() : array<string|int, mixed>
Return values
array<string|int, mixed> —Formato del widget para vistas en cuadrícula.
inputHidden()
public
inputHidden(object $model) : string
Parameters
- $model : object
-
Modelo que contiene el valor del campo.
Return values
string —Campo oculto con el valor actual.
plainText()
public
plainText(object $model) : string
Parameters
- $model : object
-
Modelo que contiene el valor del campo.
Return values
string —Representación en texto plano del valor.
processFormData()
public
processFormData(object &$model, Request $request) : mixed
Parameters
- $model : object
- $request : Request
setCustomValue()
Asigna un valor fijo personalizado al widget.
public
setCustomValue(mixed $value) : mixed
Parameters
- $value : mixed
-
Valor personalizado.
setLevel()
public
static setLevel(int $new) : mixed
Parameters
- $new : int
setToken()
public
static setToken(string $token) : mixed
Parameters
- $token : string
showTableTotals()
public
showTableTotals() : bool
Return values
bool —Indica si el widget muestra totales en tablas.
tableCell()
public
tableCell(object $model[, string $display = 'left' ]) : string
Parameters
- $model : object
-
Modelo que contiene el valor del campo.
- $display : string = 'left'
-
Alineación del contenido.
Return values
string —HTML de la celda de tabla.
applyOperatorFromOption()
protected
applyOperatorFromOption(array<string|int, string> $option, mixed $value) : bool
Parameters
- $option : array<string|int, string>
- $value : mixed
Return values
boolassets()
Añade los recursos necesarios al gestor de assets.
protected
assets() : mixed
colorToClass()
protected
colorToClass(string $color, string $prefix) : string
Parameters
- $color : string
- $prefix : string
Return values
stringcombineClasses()
protected
combineClasses(array<string|int, mixed> ...$classes) : string
Parameters
- $classes : array<string|int, mixed>
Return values
stringcss()
Returns equivalent css class to $class. To extend in plugins.
protected
css(string $class) : string
Parameters
- $class : string
Return values
stringescapeHtml()
Normaliza entidades HTML existentes y escapa el valor para insertarlo en contexto HTML.
protected
escapeHtml(mixed $value) : string
Parameters
- $value : mixed
-
Valor a escapar.
Return values
string —Valor escapado.
getMaxFileUpload()
Return the max file size that can be uploaded.
protected
getMaxFileUpload() : int
Return values
intgetUniqueId()
protected
getUniqueId() : int
Return values
intinputHtml()
protected
inputHtml([string $type = 'file' ][, string $extraClass = '' ]) : string
Parameters
- $type : string = 'file'
- $extraClass : string = ''
Return values
stringinputHtmlExtraParams()
protected
inputHtmlExtraParams() : string
Return values
string —Parámetros HTML adicionales del input.
loadOptions()
protected
loadOptions(array<string|int, mixed> $children) : void
Parameters
- $children : array<string|int, mixed>
-
Nodos hijos de configuración del widget.
onclickHtml()
protected
onclickHtml(string $inside[, string $titleurl = '' ]) : string
Parameters
- $inside : string
-
Contenido HTML del enlace.
- $titleurl : string = ''
-
URL alternativa para el título.
Return values
string —Contenido envuelto en enlace cuando corresponde.
readonly()
protected
readonly() : bool
Return values
bool —Indica si el widget está en modo solo lectura.
setValue()
protected
setValue(object $model) : mixed
Parameters
- $model : object
-
Modelo que contiene el valor del campo.
show()
protected
show() : string
Return values
string —Valor mostrado por el widget.
tableCellClass()
protected
tableCellClass([string $initialClass = '' ][, string $alternativeClass = '' ]) : string
Parameters
- $initialClass : string = ''
-
Clase CSS inicial.
- $alternativeClass : string = ''
-
Clase CSS alternativa.
Return values
string —Clases CSS de la celda.