HEX
Server: LiteSpeed
System: Linux premium260.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User: aliazzsr (627)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: //proc/thread-self/root/home/aliazzsr/api.crm.vqode.com/models/enums/StageEnum.php
<?php
namespace app\models\enums;

use yii2mod\enum\helpers\BaseEnum;

class StageEnum extends BaseEnum
{
    const ST_IDEA = 1;
    const ST_CONTACT = 2;
    const ST_NEEDS_DISCOVERED = 3;
    const ST_PROPOSAL_PRESENTED = 4;
    const ST_NEGOTIATION = 5;
    const ST_WON = 6;
    const ST_LOST = 7;

    public static $list = [
        self::ST_IDEA => 'Idea',
        self::ST_CONTACT => 'Contact Made',
        self::ST_NEEDS_DISCOVERED => 'Needs Discovered',
        self::ST_PROPOSAL_PRESENTED => 'Proposal Presented',
        self::ST_NEGOTIATION => 'In Negotiation',
        self::ST_WON => 'Won',
        self::ST_LOST => 'Lost',
    ];
}