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',
];
}