| 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/Headline/Classes/ |
Upload File : |
<?php
/* --------------------------------------------------------------
HeadlineWidget.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\DropdownSelect\Entities\DropdownSelectOption;
use Gambio\StyleEdit\Core\Components\FontGroup\Entities\FontGroupOption;
use Gambio\StyleEdit\Core\Components\Style\CssGenerator;
use Gambio\StyleEdit\Core\Components\TextBox\Entities\TextBox;
use Gambio\StyleEdit\Core\Language\Entities\Language;
use Gambio\StyleEdit\Core\Widgets\Abstractions\AbstractWidget;
/**
* Class HeadlineWidget
*/
class HeadlineWidget extends AbstractWidget
{
/**
* @var DropdownSelectOption
*/
protected $headingType;
/**
* @var TextBox
*/
protected $text;
/**
* @var FontGroupOption
*/
protected $font;
/**
* produces the widget HTML output
*
* @param Language|null $currentLanguage
*
* @param CssGenerator|null $cssGenerator
*
* @return string
*/
public function htmlContent(?Language $currentLanguage, ?CssGenerator $cssGenerator = null) : string
{
$html = $this->htmlTemplate();
$html = str_replace(
['{headingType}', '{text}', '{id}'],
[
$this->headingType->value($currentLanguage),
$this->text->value($currentLanguage),
$this->id->value($currentLanguage)
],
$html
);
if ($this->font !== null) {
if ($this->font->enableCustomization()->value($currentLanguage) === true) {
$cssGenerator = $cssGenerator ?? CssGenerator::create($this->id->value($currentLanguage));
$cssGenerator->setFont($this->font);
$style = (string)$cssGenerator;
} else {
$style = '';
}
$html = $style . PHP_EOL . $html;
}
return $html;
}
/**
* @return string
*/
protected function htmlTemplate() : string
{
return '<{headingType} id="{id}">{text}</{headingType}>';
}
/**
* 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->type = 'headline';
$result->id = $this->static_id;
$result->fieldsets = $this->fieldsets;
return $result;
}
}