Считать строки в этой нумерации страниц? - PullRequest
0 голосов
/ 16 августа 2011

Я использую codeigniter и класс (library) pagination в нем, почему бы не установить в моем примере column # in pagination 5 с showing?
, показывающим в нумерации 5 is-> 13 to 16 of 16, но столбец #в нумерации страниц 5 - -> 13 14 15 .
Эта проблема возникает при последней нумерации страниц, если последняя нумерация страниц представляет собой строку.

ПРИМЕР: в этомна странице вы идете на нумерацию страниц 5 или это прямая ссылка на нумерацию страниц 5

function show($offset = 0) 
    {

    $this->admin_model->header();

    $this->load->library('pagination');
    //$this->load->library('Jquery_pagination');
    $config['base_url'] = base_url().'admin/accommodation/show';
    $config['uri_segment'] = 4;
    $config['total_rows'] = $this->db->count_all('hotel_submits');
    $config['per_page'] = '3';
    //$config['div'] = '#num_count'; /* Here #content is the CSS selector for target DIV */
    $config['num_links'] = 10000000;
    $config['full_tag_open'] = '<div id="pagination">';
    $config['full_tag_close'] = '</div>';

    $this->pagination->initialize($config);

    $offset = (int) $offset; // just to make sure nothing funky gets in here
    $data['results'] = $this->db->query("SELECT @rownum:=@rownum+1 rownum, t.*
    FROM (
        SELECT *
        FROM hotel_submits
        ORDER BY id desc
        LIMIT $offset, 3    
    ) t,
    (SELECT @rownum:=0) r");

    $data['offset'] = $offset;

    ///////////////////////////HERE-START///////////////////////////////

    $curr_offset = $this->uri->segment($config['uri_segment']);
        $info = 'showing: ' . ( $curr_offset + 1 ) . ' to ' ;

        if( ( $curr_offset + $config['per_page'] ) < ( $config['total_rows'] -1 ) )
            $info .= $curr_offset + $config['per_page'];
        else
            $info .= $config['total_rows'];

        $info .= ' of ' . $config['total_rows'];

        $data['num_count'] = $info;

    ///////////////////////////HERE-END///////////////////////////////


    $this->load->view('admin/accommodation_submit_show', $data);   
    }

1 Ответ

0 голосов
/ 16 августа 2011

if (($ curr_offset + $ config ['per_page']) <($ config ['total_rows'] -1)) </p>

должно быть

if (($ curr_offset + $ config ['per_page']) <= ($ config ['total_rows'] -1)) </p>

...