Show only "Save CSV" button for admin

Discussions related to customizing hooks. Hooks are documented at http://bigprof.com/appgini/help/advanced-topics/hooks/
Post Reply
tminh
Posts: 28
Joined: 2019-05-23 02:26

Show only "Save CSV" button for admin

Post by tminh » 2019-05-27 07:26

How do i Show only "Save CSV" button for admin ??

i know can disable that button on appgini.

thanks

Alisson
Veteran Member
Posts: 81
Joined: 2017-02-25 20:32

Re: Show only "Save CSV" button for admin

Post by Alisson » 2019-05-27 18:27

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;
			}

Post Reply