help
This commit is contained in:
@@ -18,6 +18,7 @@ class Block implements FieldInterface, RequiredInterface
|
|||||||
public bool $nullable = false,
|
public bool $nullable = false,
|
||||||
public bool $required = false,
|
public bool $required = false,
|
||||||
public string $default = "",
|
public string $default = "",
|
||||||
|
public string $help = "",
|
||||||
public bool $readonly = false,
|
public bool $readonly = false,
|
||||||
public string $schema = "",
|
public string $schema = "",
|
||||||
public string $group = "",
|
public string $group = "",
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ class Checkbox implements FieldInterface, RequiredInterface
|
|||||||
public bool $required = false,
|
public bool $required = false,
|
||||||
public bool $nullable = false,
|
public bool $nullable = false,
|
||||||
public string $default = "",
|
public string $default = "",
|
||||||
|
public string $help = "",
|
||||||
public bool $readonly = false,
|
public bool $readonly = false,
|
||||||
public string $group = "",
|
public string $group = "",
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ class Color implements FieldInterface, RequiredInterface
|
|||||||
public bool $required = false,
|
public bool $required = false,
|
||||||
public bool $nullable = false,
|
public bool $nullable = false,
|
||||||
public string $default = "",
|
public string $default = "",
|
||||||
|
public string $help = "",
|
||||||
public bool $readonly = false,
|
public bool $readonly = false,
|
||||||
public string $optionsFrom = "",
|
public string $optionsFrom = "",
|
||||||
public string $optionsField = "",
|
public string $optionsField = "",
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ class Date implements FieldInterface, RequiredInterface, MinMaxInterface
|
|||||||
public ?Carbon $min = null,
|
public ?Carbon $min = null,
|
||||||
public ?Carbon $max = null,
|
public ?Carbon $max = null,
|
||||||
public string $default = "",
|
public string $default = "",
|
||||||
|
public string $help = "",
|
||||||
public bool $readonly = false,
|
public bool $readonly = false,
|
||||||
public string $optionsFrom = "",
|
public string $optionsFrom = "",
|
||||||
public string $optionsField = "",
|
public string $optionsField = "",
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ class Datetime implements FieldInterface, RequiredInterface, MinMaxInterface
|
|||||||
public ?Carbon $min = null,
|
public ?Carbon $min = null,
|
||||||
public ?Carbon $max = null,
|
public ?Carbon $max = null,
|
||||||
public string $default = "",
|
public string $default = "",
|
||||||
|
public string $help = "",
|
||||||
public bool $readonly = false,
|
public bool $readonly = false,
|
||||||
public string $optionsFrom = "",
|
public string $optionsFrom = "",
|
||||||
public string $optionsField = "",
|
public string $optionsField = "",
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ class File implements FieldInterface, MinMaxInterface
|
|||||||
public string $name,
|
public string $name,
|
||||||
public string $label,
|
public string $label,
|
||||||
public string $mime = "",
|
public string $mime = "",
|
||||||
|
public string $help = "",
|
||||||
public ?int $min = null,
|
public ?int $min = null,
|
||||||
public ?int $max = null,
|
public ?int $max = null,
|
||||||
public array $collections = [],
|
public array $collections = [],
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ class Json implements FieldInterface, RequiredInterface
|
|||||||
public string $label,
|
public string $label,
|
||||||
public bool $required = false,
|
public bool $required = false,
|
||||||
public string $default = "",
|
public string $default = "",
|
||||||
|
public string $help = "",
|
||||||
public bool $readonly = false,
|
public bool $readonly = false,
|
||||||
public bool $nullable = false,
|
public bool $nullable = false,
|
||||||
public string $group = "",
|
public string $group = "",
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ class Number implements FieldInterface, RequiredInterface, MinMaxInterface
|
|||||||
public ?int $max = null,
|
public ?int $max = null,
|
||||||
public ?float $default = null,
|
public ?float $default = null,
|
||||||
public bool $readonly = false,
|
public bool $readonly = false,
|
||||||
|
public string $help = "",
|
||||||
public string $optionsFrom = "",
|
public string $optionsFrom = "",
|
||||||
public string $optionsField = "",
|
public string $optionsField = "",
|
||||||
public bool $optionsSuggest = false,
|
public bool $optionsSuggest = false,
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ class Reference implements FieldInterface, MinMaxInterface
|
|||||||
public string $name,
|
public string $name,
|
||||||
public string $label,
|
public string $label,
|
||||||
public string $mime = "",
|
public string $mime = "",
|
||||||
|
public string $help = "",
|
||||||
public ?int $min = null,
|
public ?int $min = null,
|
||||||
public ?int $max = null,
|
public ?int $max = null,
|
||||||
public array $collections = [],
|
public array $collections = [],
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ class Rich implements FieldInterface, RequiredInterface
|
|||||||
public bool $required = false,
|
public bool $required = false,
|
||||||
public bool $nullable = false,
|
public bool $nullable = false,
|
||||||
public string $default = "",
|
public string $default = "",
|
||||||
|
public string $help = "",
|
||||||
public ?int $min = null,
|
public ?int $min = null,
|
||||||
public ?int $max = null,
|
public ?int $max = null,
|
||||||
public bool $readonly = false,
|
public bool $readonly = false,
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ class Slug implements FieldInterface, RequiredInterface
|
|||||||
public ?int $min = null,
|
public ?int $min = null,
|
||||||
public ?int $max = null,
|
public ?int $max = null,
|
||||||
public string $default = "",
|
public string $default = "",
|
||||||
|
public string $help = "",
|
||||||
public bool $readonly = false,
|
public bool $readonly = false,
|
||||||
public string $source = "",
|
public string $source = "",
|
||||||
public string $group = "",
|
public string $group = "",
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ class Text implements FieldInterface, RequiredInterface
|
|||||||
public bool $nullable = false,
|
public bool $nullable = false,
|
||||||
public ?int $min = null,
|
public ?int $min = null,
|
||||||
public ?int $max = null,
|
public ?int $max = null,
|
||||||
|
public string $help = "",
|
||||||
public string $default = "",
|
public string $default = "",
|
||||||
public bool $readonly = false,
|
public bool $readonly = false,
|
||||||
public string $optionsFrom = "",
|
public string $optionsFrom = "",
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ class Textarea implements FieldInterface, RequiredInterface
|
|||||||
public ?int $min = null,
|
public ?int $min = null,
|
||||||
public ?int $max = null,
|
public ?int $max = null,
|
||||||
public string $default = "",
|
public string $default = "",
|
||||||
|
public string $help = "",
|
||||||
public bool $readonly = false,
|
public bool $readonly = false,
|
||||||
public string $group = "",
|
public string $group = "",
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ class Uuid implements FieldInterface, RequiredInterface
|
|||||||
public function __construct(
|
public function __construct(
|
||||||
public string $name,
|
public string $name,
|
||||||
public string $label,
|
public string $label,
|
||||||
|
public string $help = "",
|
||||||
public bool $required = false,
|
public bool $required = false,
|
||||||
public bool $nullable = false,
|
public bool $nullable = false,
|
||||||
public bool $readonly = false,
|
public bool $readonly = false,
|
||||||
|
|||||||
Reference in New Issue
Block a user