2023-04-15 14:49:41 +00:00
|
|
|
```
|
|
|
|
██████╗ ██████╗ ██╗ ██╗███████╗██████╗
|
|
|
|
██╔══██╗██╔═══██╗██║ ██║██╔════╝██╔══██╗
|
|
|
|
██████╔╝██║ ██║██║ █╗ ██║█████╗ ██████╔╝
|
|
|
|
██╔═══╝ ██║ ██║██║███╗██║██╔══╝ ██╔══██╗
|
|
|
|
██║ ╚██████╔╝╚███╔███╔╝███████╗██║ ██║
|
|
|
|
╚═╝ ╚═════╝ ╚══╝╚══╝ ╚══════╝╚═╝ ╚═╝
|
|
|
|
```
|
|
|
|
# interface ModelInterface (Details)
|
2023-05-31 14:47:44 +00:00
|
|
|
> namespace: **VDM\Joomla\Interfaces**
|
2023-04-15 14:49:41 +00:00
|
|
|
```uml
|
|
|
|
@startuml
|
|
|
|
interface ModelInterface #Lavender {
|
|
|
|
+ value(mixed $value, string $field, ...) : mixed
|
|
|
|
+ item(object $item, ?string $table = null) : ?object
|
|
|
|
+ items(?array $items = null, ?string $table = null) : ?array
|
|
|
|
+ row(array $item, ?string $table = null) : ?array
|
|
|
|
+ rows(?array $items = null, ?string $table = null) : ?array
|
|
|
|
+ last(?string $table = null) : ?int
|
|
|
|
}
|
|
|
|
|
|
|
|
note right of ModelInterface::value
|
|
|
|
Model the value
|
|
|
|
Example: $this->value(value, 'value_key', 'table_name');
|
|
|
|
|
|
|
|
since: 3.2.0
|
|
|
|
return: mixed
|
|
|
|
|
|
|
|
arguments:
|
|
|
|
mixed $value
|
|
|
|
string $field
|
|
|
|
?string $table = null
|
|
|
|
end note
|
|
|
|
|
|
|
|
note right of ModelInterface::item
|
|
|
|
Model the values of an item
|
|
|
|
Example: $this->item(Object, 'table_name');
|
|
|
|
|
|
|
|
since: 3.2.0
|
|
|
|
return: ?object
|
|
|
|
end note
|
|
|
|
|
|
|
|
note right of ModelInterface::items
|
|
|
|
Model the values of multiple items
|
|
|
|
Example: $this->items(Array, 'table_name');
|
|
|
|
|
|
|
|
since: 3.2.0
|
|
|
|
return: ?array
|
|
|
|
end note
|
|
|
|
|
|
|
|
note right of ModelInterface::row
|
|
|
|
Model the values of an row
|
|
|
|
Example: $this->item(Array, 'table_name');
|
|
|
|
|
|
|
|
since: 3.2.0
|
|
|
|
return: ?array
|
|
|
|
end note
|
|
|
|
|
|
|
|
note right of ModelInterface::rows
|
|
|
|
Model the values of multiple rows
|
|
|
|
Example: $this->items(Array, 'table_name');
|
|
|
|
|
|
|
|
since: 3.2.0
|
|
|
|
return: ?array
|
|
|
|
end note
|
|
|
|
|
|
|
|
note right of ModelInterface::last
|
|
|
|
Get last modeled ID
|
|
|
|
Example: $this->last('table_name');
|
|
|
|
|
|
|
|
since: 3.2.0
|
|
|
|
return: ?int
|
|
|
|
end note
|
|
|
|
|
|
|
|
@enduml
|
|
|
|
```
|
|
|
|
|
|
|
|
---
|
|
|
|
```
|
|
|
|
██╗ ██████╗██████╗
|
|
|
|
██║██╔════╝██╔══██╗
|
|
|
|
██║██║ ██████╔╝
|
|
|
|
██ ██║██║ ██╔══██╗
|
|
|
|
╚█████╔╝╚██████╗██████╔╝
|
|
|
|
╚════╝ ╚═════╝╚═════╝
|
|
|
|
```
|
|
|
|
> Build with [Joomla Component Builder](https://git.vdm.dev/joomla/Component-Builder)
|
|
|
|
|