public static function getStatus($status = null, $textActive = 'Active', $textInActive = 'Inactive')
{
    $data = [
        self::STATUS_ACTIVE => $textActive,
        self::STATUS_INACTIVE => $textInActive
    ];

    return ArrayHelper::getValue($data, $status, $data);    
}
public static function getGifts()
{
    return ArrayHelper::map(static::find()->all(), 'id', 'name');
}

  php.