HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/apklausos/application/extensions/ButtonWidget/ButtonWidget.php
<?php

/**
 * Creates a button based on given options to fit the admin theme design.
 */
class ButtonWidget extends CInputWidget
{
    /** @var string the text displayed in the button */
    public $text = '';

    /** @var string name of the icon class. e.g.: ri-brush-fill */
    public $icon = '';

    /** @var string Position of the icon either left or right */
    public $iconPosition = 'left';

    /** @var bool if button should behave as dropdown true or false */
    public $isDropDown = false;

    /** @var bool if the 'divider plus another icon' is displayed.
     * true or false (true, if not set and 'isDropDown' is true)
     */
    public $displayDropDownIcon;

    /** @var string the icon displayed besides the divider, default is  */
    public $dropDownIcon = 'ri-more-fill';

    /** @var string link where the button points to, if link is empty
     * an <button> element is created else an <a> element
     */
    public $link = '';

    /** @var string string that should contain valid html list for bootstrap dropdown button.
     * Only used when not empty and isDropDown is true
     */
    public $dropDownContent = '';

    /** @var array html options */
    public $htmlOptions = [];

    /** Initializes the widget */
    public function init()
    {
        $this->registerClientScript();
        $this->setDefaultOptions();
    }

    /** Executes the widget */
    public function run()
    {
        $this->renderButton();
    }

    /** Renders the button */
    public function renderButton()
    {
        list($name, $id) = $this->resolveNameID();
        $this->render('button', [
            'name' => $name,
            'id' => $id,
            'text' => $this->text,
            'icon' => $this->icon,
            'iconPosition' => $this->iconPosition,
            'isDropDown' => $this->isDropDown,
            'displayDropDownIcon' => $this->displayDropDownIcon,
            'dropDownIcon' => $this->dropDownIcon,
            'dropDownContent' => $this->dropDownContent,
            'link' => $this->link,
            'htmlOptions' => $this->htmlOptions
        ]);
    }


    /** Registers required script files */
    public function registerClientScript()
    {
    }

    /**
     * Analyzes given parameters and htmlOptions and sets default values when options are not given
     */
    private function setDefaultOptions()
    {
        if ($this->displayDropDownIcon === null && $this->isDropDown === true) {
            $this->displayDropDownIcon = true;
        } elseif ($this->displayDropDownIcon !== true) {
            $this->displayDropDownIcon = false;
        }
        if (!array_key_exists('class', $this->htmlOptions)) {
            $this->htmlOptions['class'] = 'btn btn-primary';
        }
        if ($this->isDropDown) {
            $this->htmlOptions['data-bs-toggle'] = 'dropdown';
            $this->htmlOptions['aria-haspopup'] = 'true';
            $this->htmlOptions['aria-expanded'] = 'false';
            if (!$this->displayDropDownIcon) {
                $this->htmlOptions['class'] .= ' dropdown-toggle';
            }
        }
        if (!array_key_exists('name', $this->htmlOptions)) {
            $this->htmlOptions['name'] = $this->name;
        }
        if (!array_key_exists('id', $this->htmlOptions)) {
            $this->htmlOptions['id'] = $this->id;
        }
    }
}