mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
- Add generic set block ui component - Add model link set (direct and indirect) attribute (display style) - Add model link set direct allowed values - Create link set viewer block UI (BlockLinksSetDisplayAsProperty) - Add set block ui factory for linkset - Add object factory and create new endpoint in object controller (with data binder) - Add link set model, link set repository and link set data transformer services
95 lines
2.1 KiB
PHP
95 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* Copyright (C) 2013-2022 Combodo SARL
|
|
*
|
|
* This file is part of iTop.
|
|
*
|
|
* iTop is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* iTop is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
*/
|
|
|
|
namespace Combodo\iTop\Application\UI\Base\Component\Input\Set\DataProvider;
|
|
|
|
/**
|
|
* Class SimpleDataProvider
|
|
*
|
|
* @package Combodo\iTop\Application\UI\Base\Component\Input\Set\DataProvider
|
|
* @since 3.1.0
|
|
*/
|
|
class SimpleDataProvider extends AbstractDataProvider
|
|
{
|
|
/** @var array $aOptions */
|
|
private array $aOptions;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $aOptions
|
|
*/
|
|
public function __construct(array $aOptions = [])
|
|
{
|
|
parent::__construct();
|
|
|
|
// retrieve parameters
|
|
$this->SetOptions($aOptions);
|
|
}
|
|
|
|
/** @inheritDoc */
|
|
public function GetType(): string
|
|
{
|
|
return iDataProvider::TYPE_SIMPLE_PROVIDER;
|
|
}
|
|
|
|
/** @inheritDoc */
|
|
public function SetOptions(array $aOptions): SimpleDataProvider
|
|
{
|
|
$this->aOptions = $aOptions;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/** @inheritDoc */
|
|
public function SetOption(string $sKey, string $sValue): SimpleDataProvider
|
|
{
|
|
$this->aOptions[$sKey] = $sValue;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/** @inheritDoc */
|
|
public function GetOptions(): array
|
|
{
|
|
return $this->aOptions;
|
|
}
|
|
|
|
/**
|
|
* GetOptionsGroups.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function GetOptionsGroups(): array
|
|
{
|
|
$aGroups = [];
|
|
if ($this->GetGroupField() != null) {
|
|
foreach ($this->GetOptions() as $aOption) {
|
|
if (array_key_exists($this->GetGroupField(), $aOption)) {
|
|
$aGroups[$aOption[$this->GetGroupField()]] = [
|
|
'label' => $aOption[$this->GetGroupField()],
|
|
'value' => $aOption[$this->GetGroupField()],
|
|
];
|
|
}
|
|
}
|
|
}
|
|
|
|
return array_values($aGroups);
|
|
}
|
|
} |