Backend\Modules\Locale\Actions\Delete::setFilter PHP Метод

setFilter() приватный Метод

Sets the filter based on the $_GET array.
private setFilter ( )
    private function setFilter()
    {
        $this->filter['language'] = $this->getParameter('language', 'array') != '' ? $this->getParameter('language', 'array') : BL::getWorkingLanguage();
        $this->filter['application'] = $this->getParameter('application');
        $this->filter['module'] = $this->getParameter('module');
        $this->filter['type'] = $this->getParameter('type', 'array');
        $this->filter['name'] = $this->getParameter('name');
        $this->filter['value'] = $this->getParameter('value');
        $this->filterQuery = BackendLocaleModel::buildURLQueryByFilter($this->filter);
    }