allow link view per user not group on links-home.php ???

The recommended method of customizing your AppGini-generated application is through hooks. But sometimes you might need to add functionality not accessible through hooks. You can discuss this here.
Post Reply
xbox2007
Veteran Member
Posts: 129
Joined: 2016-12-16 16:49

allow link view per user not group on links-home.php ???

Post by xbox2007 » 2023-03-14 17:39

hello ,

on links-home.php

allow see link for custom pages or custom report by group

Code: Select all

	$homeLinks[] = array(
		'url' => 'report/D_Card.php', 
		'title' => 'New Report', 
		'description' => '',
		'groups' => array('Admins', 'CRM Coordinator'), // groups allowed to see this link, use '*' if you want to show the link to all groups
		'grid_column_classes' => '', // optional CSS classes to apply to link block. See: http://getbootstrap.com/css/#grid
		'panel_classes' => '', // optional CSS classes to apply to panel. See: http://getbootstrap.com/components/#panels
		'link_classes' => 'btn btn-lg btn-warning', // optional CSS classes to apply to link. See: http://getbootstrap.com/css/#buttons
		'icon' => 'resources/table_icons/group.png',
		'table_group' => 'Report' // optional name of the table group you wish to add the link to. If the table group name contains non-Latin characters, you should convert them to html entities.
		); 		
I want ask if there are anyway to allow per users

thanks a lot

Post Reply