jcb-packager/src/12234620-f54f-4914-a51a-24f...
Robot d059af4242
update 2023-10-10 10:16:07
2023-10-10 11:39:38 +02:00
..
README.md first commit 2023-04-15 16:53:53 +02:00
code.php update 2023-10-10 10:16:07 2023-10-10 11:39:38 +02:00
code.power update 2023-10-10 10:16:07 2023-10-10 11:39:38 +02:00
settings.json first commit 2023-04-15 16:53:53 +02:00

README.md

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

class Load (Details)

namespace: VDM\Joomla\Componentbuilder\Package\Database

@startuml
class Load  #Gold {
  # Table $table
  # Database $load
  + __construct(?Table $table = null, ?Database $load = null)
  + value(int $id, string $field, ...) : mixed
  + item(int $id, ?string $table) : ?object
  + items(array $ids, string $table) : ?array
}

note right of Load::__construct
  Constructor

  since: 3.2.0
end note

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

  since: 3.2.0
  return: mixed
  
  arguments:
    int $id
    string $field
    string $table
end note

note right of Load::item
  Get values from a given table
Example: $this->item(23, 'table_name');

  since: 3.2.0
  return: ?object
end note

note right of Load::items
  Get values from a given table
Example: $this->items($ids, 'table_name');

  since: 3.2.0
  return: ?array
end note
 
@enduml

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

Build with Joomla Component Builder