hello,
am trying to accomplish the following :
get only rows where permission = 1 ,
i have multiple users and i want to show only certain rows for each user where they can edit.
something like that :
$crud->set_table('pages',"where permission =1"); <--------------------how to do this in the right way :'( $crud->set_relation('pagetype','themes','name'); $crud->set_rules('systemTTL', 'System Title', 'trim|required|min_length[4]|xss_clean|alpha_dash'); $crud->callback_add_field('title',array($this,'edit_field_callback'));
Thank you