Admin_local_module::index PHP Метод

index() публичный Метод

public index ( $module = [] )
    public function index($module = array())
    {
        $this->lang->load('local_module/local_module');
        $this->user->restrict('Module.LocalModule');
        if (!empty($module)) {
            $title = isset($module['title']) ? $module['title'] : $this->lang->line('_text_title');
            $this->template->setTitle('Module: ' . $title);
            $this->template->setHeading('Module: ' . $title);
            $this->template->setButton($this->lang->line('button_save'), array('class' => 'btn btn-primary', 'onclick' => '$(\'#edit-form\').submit();'));
            $this->template->setButton($this->lang->line('button_save_close'), array('class' => 'btn btn-default', 'onclick' => 'saveClose();'));
            $this->template->setButton($this->lang->line('button_icon_back'), array('class' => 'btn btn-default', 'href' => site_url('extensions')));
            if ($this->input->post('location_search_mode')) {
                $data['location_search_mode'] = $this->input->post('location_search_mode');
            } else {
                if (isset($data['ext_data']['location_search_mode'])) {
                    $data['location_search_mode'] = $data['ext_data']['location_search_mode'];
                } else {
                    $data['location_search_mode'] = 'multi';
                }
            }
            if ($this->input->post('use_location')) {
                $data['use_location'] = $this->input->post('use_location');
            } else {
                if (isset($data['ext_data']['use_location'])) {
                    $data['use_location'] = $data['ext_data']['use_location'];
                } else {
                    $data['use_location'] = '0';
                }
            }
            if ($this->input->post('status')) {
                $data['status'] = $this->input->post('status');
            } else {
                if (isset($data['ext_data']['status'])) {
                    $data['status'] = $data['ext_data']['status'];
                } else {
                    $data['status'] = '1';
                }
            }
            $this->load->model('Locations_model');
            $data['locations'] = array();
            $results = $this->Locations_model->getLocations();
            foreach ($results as $result) {
                $data['locations'][] = array('location_id' => $result['location_id'], 'location_name' => $result['location_name']);
            }
            if ($this->input->post() and $this->_updateModule() === TRUE) {
                if ($this->input->post('save_close') === '1') {
                    redirect('extensions');
                }
                redirect('extensions/edit/module/local_module');
            }
            return $this->load->view('local_module/admin_local_module', $data, TRUE);
        }
    }