Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/cartforge.co/app/code/Amasty/Label/Api/Data/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //home/corals/cartforge.co/app/code/Amasty/Label/Api/Data/LabelTooltipInterface.php
<?php

declare(strict_types=1);

/**
 * @author Amasty Team
 * @copyright Copyright (c) Amasty (https://www.amasty.com)
 * @package Product Labels for Magento 2
 */

namespace Amasty\Label\Api\Data;

interface LabelTooltipInterface
{
    public const PART_CODE = 'label_tooltip';

    public const STATUS = 'status';
    public const COLOR = 'color';
    public const TEXT_COLOR = 'text_color';
    public const TEXT = 'text';

    /**
     * @return int
     */
    public function getStatus(): int;

    /**
     * @param int $status
     * @return void
     */
    public function setStatus(int $status): void;

    /**
     * @return string|null
     */
    public function getColor(): ?string;

    /**
     * @param string $color
     * @return void
     */
    public function setColor(string $color): void;

    /**
     * @return string|null
     */
    public function getTextColor(): ?string;

    /**
     * @param string $textColor
     * @return void
     */
    public function setTextColor(string $textColor): void;

    /**
     * @return string|null
     */
    public function getText(): ?string;

    /**
     * @param string $text
     * @return void
     */
    public function setText(string $text): void;
}

Spamworldpro Mini