0
function customers_management()
{
        $crud = new grocery_CRUD();

        $crud->set_table('customers');
        $crud->columns('customerName','contactLastName','phone','city','country','salesRepEmployeeNumber','postalCode');
        $crud->display_as('salesRepEmployeeNumber','from Employeer')
             ->display_as('customerName','Name')
             ->display_as('contactLastName','Last Name');
        $crud->set_subject('Customer');
        $crud->set_relation('salesRepEmployeeNumber','employees','lastName');

        $output = $crud->render();

        $this->_example_output($output);
}   

ここにコントローラーの機能があります。ログインを確認するには、何を追加する必要がありますか?

4

1 に答える 1

0

認証を処理し、アクションの最初の行で呼び出しを行う他のライブラリ ( DX_Authなど) を調べる必要があります。

function customers_management() {
    <call the authentication library>
    if (success-login) {
        ... do authenticated operation
    } else {
        ... show him the login page
    }
}
于 2013-06-12T05:48:54.070 に答える