PHP code example of xety / configurator

1. Go to this page and download the library: Download xety/configurator library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

xety / configurator example snippets



namespace App;

use Xety\Configurator\Configurator;

class MyClass extends Configurator
{
}


class MyClass extends Configurator
{
    protected $defaultConfig = [
        'key' => 'value',
        //etc
    ];

    public function __construct()
    {
        $this->setConfig($defaultConfig);
    }
}

public setConfig (array $values)

public getConfig (void)

public flushConfig (string ...$filter)

$this->flushConfig('key1', 'key2', 'key3');

public mergeConfig (array $values, bool $invert = false)

public clearConfig (void)

public setOption (string $name, mixed $value)

$this->setOption('key', 'value');
$this->setOption('key', ['key2' => ['value2']]);

public getOption (string $name)

$this->getOption('key');

public hasOption (string $name)

public flushOption (string $name)

public pushOption (string $name, array $args)

$this->pushOption('key', ['key1' => 'value1'], ['key2' => ['value2' => 'value3']]);

'key' => [
    'key1' => 'value1',
    'key2' => [
        'value2' => 'value3'
    ]
]

public consumeOption (string $name)

$config = [
    'key1' => 'value1'
];

$result = $this->consumeOption('key1');

echo $result; // value1
var_dump($config); // []

public transientOption (string $name, mixed $value)

// Will update the value of the key `key` if it exist,
// or it will create it with the value `value`.
 $this->transientOption('key', 'value');