jeyroik/extas-values-repository-items

There is no license information available for the latest version (1.0.0) of this package.

Repository items for Extas values

1.0.0 2020-05-22 11:27 UTC

This package is auto-updated.

Last update: 2024-04-22 20:43:48 UTC


README

PHP Composer codecov.io PHPStan Enabled 68747470733a2f2f6170692e636f6465636c696d6174652e636f6d2f76312f6261646765732f30623130396261313365313130656232393865352f6d61696e7461696e6162696c697479

Описание

Пакет предоставляет обработчик значения "данные из реопзитория".

Использование

extas.json

{
  "items": [
    {
      "name": "test",
      "value": {
        "repository": "pluginRepository",
        "method": "all",
        "query": {"class": "test"},
        "field": ""
      }    
    }
  ]
}
$repoValue = new \extas\components\values\RepositoryValue($item->getValue());
if ($repoValue->isValid()) {
    $values = $repoValue->build();
}