super-powers/src/7e822c03-1b20-41d1-9427-f5b...
Robot 321d89954a
update 2024-04-22 16:43:32
2024-04-22 16:43:33 +02:00
..
README.md update 2024-04-22 16:43:32 2024-04-22 16:43:33 +02:00
code.php update 2024-04-22 16:43:32 2024-04-22 16:43:33 +02:00
code.power update 2024-04-22 16:43:32 2024-04-22 16:43:33 +02:00
settings.json update 2024-04-07 13:20:18 2024-04-07 13:20:46 +02:00

README.md

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

abstract class Registry (Details)

namespace: VDM\Joomla\Abstraction extends: ActiveRegistry

@startuml
abstract Registry  #Orange {
  # ?string $separator
  + set(string $path, mixed $value) : static
  + add(string $path, mixed $value, ...) : static
  + get(string $path, mixed $default = null) : mixed
  + remove(string $path) : static
  + exists(string $path) : bool
  + setSeparator(?string $value) : static
  # getActiveKeys(string $path) : ?array
}

note right of Registry::set
  Sets a value into the registry using multiple keys.

  since: 3.2.0
  return: static
end note

note right of Registry::add
  Adds content into the registry. If a key exists,
it either appends or concatenates based on $asArray switch.
Default is $addAsArray = false (if null) in base class.
Override in child class allowed set class property $addAsArray = true.

  since: 3.2.0
  return: static
  
  arguments:
    string $path
    mixed $value
    ?bool $asArray = null
end note

note right of Registry::get
  Retrieves a value (or sub-array) from the registry using multiple keys.

  since: 3.2.0
  return: mixed
end note

note right of Registry::remove
  Removes a value (or sub-array) from the registry using multiple keys.

  since: 3.2.0
  return: static
end note

note right of Registry::exists
  Checks the existence of a particular location in the registry using multiple keys.

  since: 3.2.0
  return: bool
end note

note right of Registry::setSeparator
  Sets a separator value

  since: 3.2.0
  return: static
end note

note right of Registry::getActiveKeys
  Get that the active keys from a path

  since: 3.2.0
  return: ?array
end note
 
@enduml

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

Build with Joomla Component Builder