| 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/Button/Classes/ |
Upload File : |
<?php
/*--------------------------------------------------------------------------------------------------
FancyLinkWidget.php 2019-10-24
Gambio GmbH
http://www.gambio.de
Copyright (c) 2016 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\RadioImage\Entities\RadioImageOption;
use Gambio\StyleEdit\Core\Components\TextBox\Entities\TextBox;
use Gambio\StyleEdit\Core\Components\Url\Entities\UrlOption;
use Gambio\StyleEdit\Core\Language\Entities\Language;
use Gambio\StyleEdit\Core\Widgets\Abstractions\AbstractWidget;
/**
* Class ButtonWidget
*/
class ButtonWidget extends AbstractWidget
{
/**
* @var string
*/
protected const TEXT_FALLBACK = 'Button';
/**
* @var string
*/
protected $type;
/**
* @var string
*/
protected $text;
/**
* @var RadioImageOption
*/
protected $size;
/**
* @var RadioImageOption
*/
protected $buttonType;
/**
* @var UrlOption
*/
protected $link;
/**
* @var TextBox
*/
protected $class;
/**
* @var DropdownSelectOption
*/
protected $target;
/**
* @param Language|null $currentLanguage
*
* @return string
*/
public function htmlContent(?Language $currentLanguage): string
{
$href = $this->link !== null ? $this->link->value($currentLanguage) : '';
$class = implode(' ',
array_filter([
'btn',
$this->class->value($currentLanguage),
$this->size->value($currentLanguage),
$this->buttonType->value($currentLanguage)
]));
return ' <a href="' . $href . '" id="' . $this->id->value($currentLanguage) . '" target="'
. $this->target->value($currentLanguage) . '" class="' . $class . '">'
. $this->text->value($currentLanguage) . '</a>';
}
/**
* 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(): stdClass
{
$result = $this->jsonObject;
$result->id = $this->static_id;
$result->type = 'button';
$result->fieldsets = $this->fieldsets;
return $result;
}
}