phpseclib/src/a3414824-e99d-4878-b3d1-b5d...
Robot fcb429d948
update 2024-04-07 13:20:18
2024-04-07 13:20:36 +02:00
..
README.md first commit 2023-04-15 17:00:08 +02:00
code.php update 2023-05-31 16:47:30 2023-05-31 16:47:37 +02:00
code.power first commit 2023-04-15 17:00:08 +02:00
settings.json update 2024-04-07 13:20:18 2024-04-07 13:20:36 +02:00

README.md

██████╗  ██████╗ ██╗    ██╗███████╗██████╗
██╔══██╗██╔═══██╗██║    ██║██╔════╝██╔══██╗
██████╔╝██║   ██║██║ █╗ ██║█████╗  ██████╔╝
██╔═══╝ ██║   ██║██║███╗██║██╔══╝  ██╔══██╗
██║     ╚██████╔╝╚███╔███╔╝███████╗██║  ██║
╚═╝      ╚═════╝  ╚══╝╚══╝ ╚══════╝╚═╝  ╚═╝

class Load (Details)

namespace: VDM\Joomla\Componentbuilder\Server

@startuml
class Load  #Gold {
  # Database $db
  # Model $model
  + __construct(?Database $db = null, ?Model $model = null)
  + value(int $id, string $field) : mixed|null
  + item(int $id, array $fields) : ?object
  # setDatabaseFields(array $fields, string $key = 'a') : array
}

note right of Load::__construct
  Constructor

  since: 3.2.0
end note

note right of Load::value
  Get a value from a given server
Example: $this->value(23, 'protocol');

  since: 3.2.0
  return: mixed|null
end note

note right of Load::item
  Get values from a given server
Example: $this->item(23, ['name', 'of', 'fields']);

  since: 3.2.0
  return: ?object
end note

note right of Load::setDatabaseFields
  Set Fields ready to use in database call

  since: 3.2.0
  return: array
end note
 
@enduml

     ██╗ ██████╗██████╗
     ██║██╔════╝██╔══██╗
     ██║██║     ██████╔╝
██   ██║██║     ██╔══██╗
╚█████╔╝╚██████╗██████╔╝
 ╚════╝  ╚═════╝╚═════╝

Build with Joomla Component Builder