File: D:/HostingSpaces/farmfun/reserveren.farmfun.be/app/Komma/Vacancies/Kms/VacancySection.php
<?php
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
namespace App\Komma\Vacancies\Kms;
use App\Komma\Components\ComponentType\ComponentTypes;
use App\Komma\Kms\Core\Attributes\Attribute;
use App\Komma\Kms\Core\Attributes\ComponentArea;
use App\Komma\Kms\Core\Attributes\Documents;
use App\Komma\Kms\Core\Attributes\OnOff;
use App\Komma\Kms\Core\Attributes\Select;
use App\Komma\Kms\Core\Attributes\TextArea;
use App\Komma\Kms\Core\Attributes\TextField;
use App\Komma\Kms\Core\Attributes\Title;
use App\Komma\Kms\Core\ModelServiceInterface;
use App\Komma\Kms\Core\Sections\Section;
use App\Komma\Kms\Core\Sections\Tabs\Collections\SectionTabs;
use App\Komma\Users\Kms\KmsUserService;
use App\Komma\Vacancies\Models\Vacancy;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
final class VacancySection extends Section
{
/** @var KmsUserService */
protected $kmsUserService;
/**
* PageSection constructor.
* @param $slug
*/
// function __construct(Kms $kms, PageRepository $repository)
public function __construct($slug)
{
$this->kmsUserService = app(KmsUserService::class);
$tabs = new SectionTabs();
parent::__construct($tabs, $slug);
}
/**
* Generates the attributes for this section. They all must extend the App\Kms\Core\Attributes\Attribute class
* This is the place where you need to setup your sections appearance. Just make sure you build an array of attributes
* and put each attribute in a AbstractSectionTabItem with a SectionTabGroups constant to link them to a tab.
*
* @see PageRepository::saveModel()
* @param Model $currentModel
* @return Collection A collection of SectionTabItems
*/
protected function generateAttributes(Model $currentModel = null): Collection
{
//*****************************************************************************************\\
//*** Generate the attributes ***\\
//*****************************************************************************************\\
$attributes = [];
//Build the general attributes and put them in the attributes array
$vacancyModelService = app(ModelServiceInterface::class);
$vacancyModelService->setModelClassName(Vacancy::class);
$attributes[] = (new Select())
->setItems($vacancyModelService->getOptionsForSelectAsTree()->toArray())
->setLabelText(__('kms/pages.parent_page'))
->setExcludeCurrentModelItem(true)
->setStyleClass('hidden')
->mapValueFrom(Attribute::ValueFromItself, 'parent_id');
$attributes[] = (new OnOff())
->setLabelText(__('kms/global.active'))
->switchOn()
->mapValueFrom(Attribute::ValueFromModel, 'active');
$attributes[] = (new Documents())
->setLabelText(__('kms/global.image'))
->onlyAllowImages()
->setMaxDocuments(1)
->setSubFolder('vacancies')
->setSmallDragAndDropArea()
->mapValueFrom(Attribute::ValueFromDocuments, 'vacancies');
//Build an array with attributes for each current site language
$languageIndexedAttributes = $this->createAttributesFromExistingAttributeForCurrentSiteLanguages([
(new TextField(__('kms/global.title')))
->setPlaceholderText(__('kms/global.enterTitle'))
->mapValueFrom(Attribute::ValueFromTranslationModel, 'name')
->setTab('page'),
(new TextArea())
->setLabelText(__('kms/vacancies.teaser'))
->setPlaceholderText(__('kms/global.enterDescription'))
->mapValueFrom(Attribute::ValueFromTranslationModel, 'teaser')
->setTab('page'),
(new TextArea())
->setLabelText(__('kms/global.description'))
->setPlaceholderText(__('kms/global.enterDescription'))
->enableTinymceEditor()
->mapValueFrom(Attribute::ValueFromTranslationModel, 'description')
->setTab('page'),
(new ComponentArea())
->setSubFolder('vacancy_component_data')
->setComponentTypes(ComponentTypes::getSet('vacancies'))
->mapValueFrom(Attribute::ValueFromComponentArea, 'vacancy_components')
->setTab('page'),
(new Title('SEO'))
->setTab('seo'),
(new TextField(__('kms/global.metaTitle')))
->setPlaceholderText(__('kms/global.enterTitle'))
->mapValueFrom(Attribute::ValueFromTranslationModel, 'meta_title')
->setTab('seo'),
(new TextArea())
->setLabelText(__('kms/global.metaDescription'))
->setPlaceholderText(__('kms/global.enterMetaDescription'))
->mapValueFrom(Attribute::ValueFromTranslationModel, 'meta_description')
->setTab('seo'),
]);
//Return all attributes as a collection
return collect(array_merge($attributes, $languageIndexedAttributes));
}
/**
* This method will stop the load entities of the kmsSiteSection
*
* @return array
*/
public function loadEntities()
{
return [];
}
/**
* Adds attributes to their appropriate tabs.
*
* @param \Illuminate\Support\Collection $attributeCollection
* @return void
*/
protected function addAttributesToTabs(Collection $attributeCollection)
{
$sectionTranslationTabKey = 'kms/'.$this->slug.'.tabs';
if (__($sectionTranslationTabKey) == $sectionTranslationTabKey) {
throw new \UnexpectedValueException(static::class.': Translations tabs not found for section: "'.$this->slug.'"');
}
$tabOrder = array_keys(__($sectionTranslationTabKey));
$attributeCollection->each(function (Attribute $attribute) use ($tabOrder) {
// Get the tab key or set to default
$tabKey = $attribute->getTab();
if (! isset($tabKey)) {
$tabKey = 'default';
}
// Get the tab name and make sure that the translation isset
$tabTranslationKey = 'kms/'.$this->slug.'.tabs.'.$tabKey;
$tabTranslation = __($tabTranslationKey);
if ($tabTranslation == $tabTranslationKey) {
throw new \UnexpectedValueException('ProductSection: Translation for tab not found: "'.$tabTranslationKey.'"');
}
// Append the tab
$tab = $this->tabs->getTab($tabTranslation);
$tab->tab_code_name = $tabKey;
$tab->tab_order = array_search($tabKey, $tabOrder);
$tab->addItem($attribute);
});
// Order the tab by the given tab_order
$this->tabs = $this->tabs->sortBy('tab_order');
}
}