Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/sprint.migration/lib/helpers/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/sprint.migration/lib/helpers/langhelper.php

<?php

namespace Sprint\Migration\Helpers;

use CLanguage;
use Sprint\Migration\Exceptions\HelperException;
use Sprint\Migration\Helper;
use Sprint\Migration\Locale;

class LangHelper extends Helper
{

    /**
     * @throws HelperException
     * @return mixed
     */
    public function getDefaultLangIdIfExists()
    {
        $by = 'def';
        $order = 'desc';

        $item = CLanguage::GetList($by, $order, ['ACTIVE' => 'Y'])->Fetch();

        if ($item) {
            return $item['LID'];
        }

        throw new HelperException(
            Locale::getMessage(
                'ERR_DEFAULT_LANGUAGE_NOT_FOUND'
            )
        );
    }

    /**
     * @param array $filter
     * @return array
     */
    public function getLangs($filter = [])
    {
        $by = 'def';
        $order = 'desc';

        $lids = [];
        /** @noinspection PhpDynamicAsStaticMethodCallInspection */
        $dbres = CLanguage::GetList($by, $order, $filter);
        while ($item = $dbres->Fetch()) {
            $lids[] = $item;
        }

        return $lids;
    }

    /**
     * @throws HelperException
     * @return array
     */
    public function getLangsIfExists()
    {
        $items = $this->getLangs(['ACTIVE' => 'Y']);
        if (!empty($items)) {
            return $items;
        }

        throw new HelperException(
            Locale::getMessage(
                'ERR_ACTIVE_LANGUAGES_NOT_FOUND'
            )
        );
    }
}