4
0
api-powers/src/c03b9c61-17d3-4774-a335-783903719f83/README.md
2023-06-04 20:30:49 +02:00

2.5 KiB

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

final class Load (Details)

namespace: VDM\Joomla\GetBible\Database

@startuml
class Load << (F,LightGreen) >> #Green {
  # Table $table
  # Model $model
  # Database $load
  + __construct(Table $table, Model $model, ...)
  + value(array $keys, string $field, ...) : mixed
  + item(array $keys, ?string $table) : ?object
  + items(array $ids, string $table) : ?array
}

note right of Load::__construct
  Constructor

  since: 2.0.1
  
  arguments:
    Table $table
    Model $model
    Database $load
end note

note right of Load::value
  Get a value from a given table
Example: $this->value(
[
'abbreviation' => 'kjv',
'book_nr' => 62,
'chapter' => 3,
'verse' => 16
], 'value_key', 'table_name'
);

  since: 2.0.1
  return: mixed
  
  arguments:
    array $keys
    string $field
    string $table
end note

note right of Load::item
  Get values from a given table
Example: $this->item(
[
'abbriviation' => 'kjv',
'book_nr' => 62,
'chapter' => 3,
'verse' => 16
], 'table_name'
);

  since: 2.0.1
  return: ?object
end note

note right of Load::items
  Get values from a given table
Example: $this->items(
[
'abbriviation' => [
'operator' => 'IN',
'value' => ['kjv', 'aov']
],
'book_nr' => 62,
'chapter' => 3,
'verse' =>  [
'operator' => 'IN',
'value' => [16, 17, 18]
]
], 'table_name'
);
Example: $this->items($ids, 'table_name');

  since: 2.0.1
  return: ?array
end note
 
@enduml

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

Build with Joomla Component Builder