unsetPrint

unsetPrint(void)

The method unsetPrint is removing completely the Print operation for the end-user. More specifically:

  1. It is removing the button "Print"
  2. The user doesn't have the ability to get data for print operation 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->unsetPrint();

You can also see a full working example:

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

$output = $crud->render();

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