| Server IP : 85.158.181.41 / Your IP : 216.73.217.12 Web Server : Apache System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64 User : moncbefd ( 1024) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/moncbefd/www.moneta.at/GXModules/Gambio/StyleEdit/Core/Options/Factories/ |
Upload File : |
<?php
/*--------------------------------------------------------------------------------------------------
FieldSetFactory.php 2019-11-06
Gambio GmbH
http://www.gambio.de
Copyright (c) 2019 Gambio GmbH
Released under the GNU General Public License (Version 2)
[http://www.gnu.org/licenses/gpl-2.0.html]
--------------------------------------------------------------------------------------------------
*/
namespace Gambio\StyleEdit\Core\Options\Factories;
use Gambio\StyleEdit\Core\BuildStrategies\Exceptions\NotFoundException;
use Gambio\StyleEdit\Core\Components\Option\Entities\Option;
use Gambio\StyleEdit\Core\Components\Option\Entities\OptionCollection;
use Gambio\StyleEdit\Core\Options\Entities\AbstractComponentGroupOption;
use Gambio\StyleEdit\Core\Options\Entities\FieldSet;
use Gambio\StyleEdit\Core\Repositories\ConfigurationRepository;
use Gambio\StyleEdit\Core\SingletonPrototype;
use ReflectionException;
use stdClass;
/**
* Class FieldSetFactory
* @package Gambio\StyleEdit\Core\Options\Factories
*/
class FieldSetFactory
{
/**
* @param stdClass $object
* @param ConfigurationRepository $repository
*
* @return FieldSet
* @throws ReflectionException
*/
public function createFromJsonObject(stdClass $object): FieldSet{
return $this->createFromJsonAndRepository($object, null);
}
/**
* @param stdClass $object
* @param ConfigurationRepository|null $repository
*
* @return FieldSet
* @throws ReflectionException
*/
public function createFromJsonAndRepository(stdClass $object, ConfigurationRepository $repository = null): FieldSet
{
$options = new OptionCollection([]);
if (!isset($object->options) || !is_array($object->options)) {
throw new Exception('FieldSet must have a valid options list!');
}
foreach ($object->options as $jsonOption) {
try {
$optionFactoryNameName = ucfirst(str_replace('-', '', ucwords($jsonOption->type, '-'))) . 'OptionFactory';
$optionFactory = SingletonPrototype::instance()->get($optionFactoryNameName);
$option = $optionFactory->createFromJson($jsonOption, '', $repository);
} catch (NotFoundException $e) {
$option = Option::createFromJsonObject($jsonOption, '', $repository);
}
$options->addItem($option);
}
return new FieldSet($object->id ?? null,
$object->title ?? null,
$object->type ?? null,
$object->basic ?? null,
$object->hidden ?? null,
$options);
}
}