Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mapDatasetValueByRule #1

Open
KarelWintersky opened this issue Jul 6, 2022 · 1 comment
Open

mapDatasetValueByRule #1

KarelWintersky opened this issue Jul 6, 2022 · 1 comment

Comments

@KarelWintersky
Copy link
Contributor

    /**
     * $from[ $field ] => $rules[ $from[ $field ] ],
     * но если ключ не найден в одном из массивов - то подставляет дефолтное значение
     * из $rules[ null ] или $default
     *
     * @todo: -> Arris\Helpers
     *
     * @param $from_dataset
     * @param $field
     * @param $rules
     * @param $default
     * @return mixed|string
     */
    public static function mapDatasetValueByRule($from_dataset = [], $field = '', $rules = [], $default = '')
    {
        if (empty($from_dataset) || empty($rules) || empty($field)) {
            return $default;
        }

        if (array_key_exists($field, $from_dataset)) {
            $value = $from_dataset[$field];

            if (array_key_exists($value, $rules)) {
                return $rules[ $value ];
            } elseif (array_key_exists('_', $rules)) {
                return $rules[ '_' ];
            } else {
                return $default;
            }
        } else {
            if (array_key_exists('_', $rules)) {
                return $rules['_'];
            } else {
                return $default;
            }
        }
    }
@KarelWintersky
Copy link
Contributor Author

пример использования:

$this->smarty->assign("feedback_title", Common::mapDatasetValueByRule($_REQUEST, 'type', [
            '_'         =>  'Прислать новость',
            'new'       =>  'Прислать новость',
            'question'  =>  'Задать вопрос',
            'advert'    =>  'Прислать заявку для размещения рекламы',
            'story'     =>  'Рассказать историю',
            'error'     =>  'Сообщить об ошибке',
        ], ''));

Теперь если $_REQUEST['type'] === 'error' - то функция вернет 'Сообщить об ошибке'
Если значения в наборе правил нет - вернется default_value

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant