unsetDelete

unsetDelete(void)

The method unsetDelete is removing completely the Delete operation for the end-user. More specifically:

  1. It is removing the button "Delete"
  2. The user doesn't have the ability to Remove any data even if they try to do it by having the URL of the API (e.g. the permission is not allowed)

The syntax is simple. You can find an example below:

$crud->unsetDelete();

You can also see a full working example:

$crud->setTable('customers');
$crud->setSubject('Customer', 'Customers');
$crud->columns(['customerName','phone','addressLine1','creditLimit']);
$crud->unsetDelete();

$output = $crud->render();

You can see the results of the above example here. As you can see by your own, the operation Delete is completely removed: