| 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/Widgets/ProductList/Classes/ |
Upload File : |
<?php
/*--------------------------------------------------------------------------------------------------
ProductListWidget.php 2019-10-24
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]
--------------------------------------------------------------------------------------------------
*/
use Gambio\StyleEdit\Core\Components\Checkbox\Entities\CheckboxOption;
use Gambio\StyleEdit\Core\Components\DropdownSelect\Entities\DropdownSelectOption;
use Gambio\StyleEdit\Core\Components\ProductListGroup\Entities\ProductListGroupOption;
use Gambio\StyleEdit\Core\Components\TextBox\Entities\TextBox;
use Gambio\StyleEdit\Core\Language\Entities\Language;
use Gambio\StyleEdit\Core\Options\Entities\FieldSet;
use Gambio\StyleEdit\Core\Widgets\Abstractions\AbstractWidget;
use Gambio\StyleEdit\Core\Widgets\Abstractions\Interfaces\ContentGeneratorInterface;
/**
* Class representing a product list widget
*/
class ProductlistWidget extends AbstractWidget
{
/**
* HTML element class
*
* @var TextBox
*/
protected $class;
/**
* @var DropdownSelectOption
*/
protected $presentation;
/**
* @var TextBox
*/
protected $maxProducts;
/**
* @var CheckboxOption
*/
protected $random;
/**
* @var ProductListGroupOption
*/
protected $productlist;
/**
* @var ProductReadService
*/
protected $productReadService;
/**
* Create ProductListWidget instance
*
* @param string $static_id Static ID
* @param FieldSet[] $fieldsets Fieldsets
* @param stdClass $jsonObject JSON
*
* @throws Exception
*/
public function __construct(string $static_id, $fieldsets, stdClass $jsonObject)
{
parent::__construct($static_id, $fieldsets, $jsonObject);
$this->productReadService = StaticGXCoreLoader::getService('ProductRead');
}
/**
* Output the HTML representation
*
* @param Language|null $currentLanguage
*
* @return string
* @throws Exception
*/
public function previewContent(?Language $currentLanguage) : string
{
$params = [
$this->productlist->categorySearchBox()->value()->id ?? 0,
$this->productlist->listType()->value($currentLanguage),
$this->random->value($currentLanguage),
$this->maxProducts->value($currentLanguage),
$this->productlist->productSearchBox()->value($currentLanguage),
$this->id->value($currentLanguage),
$this->class->value($currentLanguage),
new IdType($currentLanguage->id()),
MainFactory::create(LanguageCode::class, new StringType($currentLanguage->code())),
$this->presentation->value($currentLanguage)
];
$result = MainFactory::create(ProductListWidgetOutputCommand::class, ...$params)->execute() ?? '';
if (!$result) {
$result = '<div>' . '<h4 style="color: gray;">' . MainFactory::create(LanguageTextManager::class)->get_text(
'preview.placeholder',
'productlistWidget'
) . '</h4>' . '</div>';
}
return $result;
}
/**
* @param Language|null $currentLanguage
*
* @return string
*/
public function htmlContent(?Language $currentLanguage) : string
{
$categoryId = $this->productlist->categorySearchBox()->value()->id ?? 0;
$listType = $this->productlist->listType()->value($currentLanguage);
$random = $this->random->value($currentLanguage) ? 'true' : 'false';
$maxProducts = $this->maxProducts->value($currentLanguage);
$products = implode(',', $this->productlist->productSearchBox()->value($currentLanguage));
$id = $this->id->value($currentLanguage);
$class = $this->class->value($currentLanguage);
$languageId = $currentLanguage->id();
$languageCode = $currentLanguage->code();
$presentation = $this->presentation->value($currentLanguage);
return "\n{product_list categoryId='$categoryId' listType='$listType' presentation='$presentation' random='$random' maxProducts='$maxProducts' products='$products' id='$id' class='$class' languageId='$languageId' languageCode='$languageCode'}\n";
}
/**
* Specify data which should be serialized to JSON
*
* @link https://php.net/manual/en/jsonserializable.jsonserialize.php
* @return mixed data which can be serialized by <b>json_encode</b>,
* which is a value of any type other than a resource.
* @since 5.4.0
*/
public function jsonSerialize()
{
$result = $this->jsonObject;
$result->id = $this->static_id;
$result->type = 'productlist';
$result->fieldsets = $this->fieldsets;
return $result;
}
}