mirror of
https://github.com/SkillDisplay/TYPO3ContentElements.git
synced 2024-11-22 19:26:09 +01:00
63 lines
2 KiB
PHP
63 lines
2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is part of the TYPO3 CMS project.
|
|
*
|
|
* It is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU General Public License, either version 2
|
|
* of the License, or any later version.
|
|
*
|
|
* For the full copyright and license information, please read the
|
|
* LICENSE.txt file that was distributed with this source code.
|
|
*
|
|
* The TYPO3 project - inspiring people to share!
|
|
*/
|
|
|
|
namespace SkillDisplay\SkilldisplayContent\FormDataProvider;
|
|
|
|
use GuzzleHttp\Client;
|
|
use SkillDisplay\PHPToolKit\Api\SkillSet;
|
|
use SkillDisplay\SkilldisplayContent\SettingsFactory;
|
|
use TYPO3\CMS\Backend\Form\FormDataProviderInterface;
|
|
use TYPO3\CMS\Core\Site\SiteFinder;
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
|
|
/**
|
|
* Inject available skill sets a valuepicker form
|
|
*/
|
|
class ValuePickerItemDataProvider implements FormDataProviderInterface
|
|
{
|
|
protected SiteFinder $siteFinder;
|
|
|
|
public function __construct(SiteFinder $siteFinder = null)
|
|
{
|
|
$this->siteFinder = $siteFinder ?? GeneralUtility::makeInstance(SiteFinder::class);
|
|
}
|
|
|
|
/**
|
|
* Add sys_domains into $result data array
|
|
*
|
|
* @param array $result Initialized result array
|
|
* @return array Result filled with more data
|
|
*/
|
|
public function addData(array $result): array
|
|
{
|
|
if ($result['tableName'] === 'tt_content' && isset($result['processedTca']['columns']['skilldisplay_skillset'])) {
|
|
$api = new SkillSet(
|
|
(new SettingsFactory($this->siteFinder))->createFromPageUid($result['parentPageRow']['uid']),
|
|
GeneralUtility::makeInstance(Client::class)
|
|
);
|
|
$skillSets = $api->getAll();
|
|
foreach ($skillSets as $skillSet) {
|
|
$result['processedTca']['columns']['skilldisplay_skillset']['config']['valuePicker']['items'][] =
|
|
[
|
|
$skillSet->getName(),
|
|
$skillSet->getId(),
|
|
];
|
|
}
|
|
}
|
|
return $result;
|
|
}
|
|
}
|