Page 1 of 1

Show only "Save CSV" button for admin

Posted: 2019-05-27 07:26
by tminh
How do i Show only "Save CSV" button for admin ??

i know can disable that button on appgini.

thanks

Re: Show only "Save CSV" button for admin

Posted: 2019-05-27 18:27
by Alisson
in the hooks folder, in your tablename.php, look for:

Code: Select all

function tablename_init(&$options, $memberInfo, &$args) { 
And add this:

Code: Select all

if($memberInfo['group']='Admins'){
			$options->AllowCSV=1;
			$options->AllowPrinting=0;
			$options->AllowFilters=0;
			}