<?php declare(strict_types=1);
namespace HelmaTheme;
use Shopware\Core\Framework\Plugin;
use Shopware\Storefront\Framework\ThemeInterface;
use Shopware\Core\Framework\Uuid\Uuid;
use Shopware\Core\Framework\Plugin\Context\InstallContext;
use Shopware\Core\Framework\Plugin\Context\UpdateContext;
use Shopware\Core\Framework\Plugin\Context\UninstallContext;
use Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria;
use Shopware\Core\Framework\DataAbstractionLayer\Search\Filter\EqualsFilter;
use Shopware\Core\System\CustomField\CustomFieldTypes;
class HelmaTheme extends Plugin implements ThemeInterface
{
public function getThemeConfigPath(): string
{
return 'theme.json';
}
/**
* Install
*
* @param InstallContext $context
* @return void
*/
public function install(InstallContext $context): void
{
$this->createAttribute($context);
parent::install($context);
}
/**
* Update
*
* @param UpdateContext $context
* @return void
*/
public function update(UpdateContext $context): void
{
parent::update($context);
}
/**
* Uninstall
*
* @param UninstallContext $context
* @return void
*/
public function uninstall(UninstallContext $context): void
{
$this->removeAttribute($context);
parent::uninstall($context);
}
/**
* Create attribute
*
* @param InstallContext $context
* @return void
*/
protected function createAttribute(InstallContext $context)
{
// Get custom field repository
$customFieldSetRepository = $this->container->get('custom_field_set.repository');
// Create new custom field
$customFieldSetRepository->create([
[
'id' => Uuid::randomHex(),
'name' => 'helmatheme',
'config' => [
'label' => [
'de-DE' => 'helmatheme',
'en-GB' => 'helmatheme',
],
'translated' => true,
],
'relations' => [
[
'id' => Uuid::randomHex(),
'entityName' => 'category',
],
],
// 'customFields' => [
// [
// 'name' => 'helmatheme_login_required',
// 'type' => CustomFieldTypes::BOOL ,
// 'config' => [
// 'componentName' => 'sw-switch-field',
// 'type' => CustomFieldTypes::BOOL ,
// 'label' => [
// 'de-DE' => 'Login Required - Allow only for logged in users',
// 'en-GB' => 'Login Required - Allow only for logged in users',
// ],
// 'customFieldType' => CustomFieldTypes::BOOL ,
// 'customFieldPosition' => 1,
// 'placeholder' => [
// 'de-DE' => null,
// 'en-GB' => null,
// ],
// 'helpText' => [
// 'de-DE' => 'Login Required - Allow only for logged in users',
// 'en-GB' => 'Login Required - Allow only for logged in users',
// ],
// 'validation' => null,
// ],
// ],
// ],
],
], $context->getContext());
}
/**
* Remove attribute
*
* @param UninstallContext $context
* @return void
*/
protected function removeAttribute(UninstallContext $context)
{
// Get custom field repository
$customFieldSetRepository = $this->container->get('custom_field_set.repository');
// Create new search criteria by name
$criteria = new Criteria();
$criteria->addFilter(
new EqualsFilter('name', 'helmatheme')
);
// Search for imos custom field set
$result = $customFieldSetRepository->search($criteria, $context->getContext());
// If imos custom field set is available
if ($result->count() > 0) {
$deleteIds = [];
/** @var CustomFieldSetEntity $entity */
foreach ($result->getEntities() as $entity) {
// Collect ids for deletion
$deleteIds[] = ['id' => $entity->getId()];
}
// Delete imos custom field set
$customFieldSetRepository->delete($deleteIds, $context->getContext());
}
}
}