Show only "Save CSV" button for admin
Posted: 2019-05-27 07:26
How do i Show only "Save CSV" button for admin ??
i know can disable that button on appgini.
thanks
i know can disable that button on appgini.
thanks
A place where AppGini users can exchange ideas and help each other.
https://forums.appgini.com:443/phpbb/
https://forums.appgini.com:443/phpbb/viewtopic.php?f=7&t=3021
Code: Select all
function tablename_init(&$options, $memberInfo, &$args) {
Code: Select all
if($memberInfo['group']='Admins'){
$options->AllowCSV=1;
$options->AllowPrinting=0;
$options->AllowFilters=0;
}