In case you've missed it, you are looking at an older version of the website. Checkout our latest version, we promise you will love it 😍

unset_back_to_list

void unset_back_to_list()
Quick Description: Unset all the "back to list" buttons and messages.

Unset all the "back to list" buttons and messages.

Example:

function unset_back_to_list_example()
{
    $crud = new grocery_CRUD();
 
    $crud->set_theme('datatables');
    $crud->set_table('employees');
    $crud->set_relation('officeCode','offices','city');
    $crud->display_as('officeCode','Office City');
    $crud->set_subject('Employee');
 
    $crud->unset_back_to_list();
 
    $output = $crud->render();
    $this->_example_output($output);
}
Note: The below example is an iframe so it might appeared with a scroll bar. If you like you can view the example on a new tab