search/src/2bd1a32c-3d90-4646-9314-28d...
Llewellyn van der Merwe 52a59e002f
first commit
2023-04-15 17:01:55 +02:00
..
README.md first commit 2023-04-15 17:01:55 +02:00
code.php first commit 2023-04-15 17:01:55 +02:00
code.power first commit 2023-04-15 17:01:55 +02:00
settings.json first commit 2023-04-15 17:01:55 +02:00

README.md

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

interface LoadInterface (Details)

namespace: VDM\Joomla\Componentbuilder\Search\Interfaces

@startuml
interface LoadInterface  #Lavender {
  + value(int $id, string $field, ...) : mixed
  + item(int $id, string $table = null) : ?object
  + items(string $table = null, int $bundle) : ?array
}

note right of LoadInterface::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 = null
end note

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

  since: 3.2.0
  return: ?object
end note

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

  since: 3.2.0
  return: ?array
end note
 
@enduml

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

Build with Joomla Component Builder