Last active
May 12, 2016 08:50
-
-
Save AppGiniCourse/997ba16af5677a87bb401b70c717d94e to your computer and use it in GitHub Desktop.
Customizing AppGini web application - Section 3 - Lesson 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| * You can add custom links in the home page by appending them here ... | |
| * The format for each link is: | |
| $homeLinks[] = array( | |
| 'url' => 'path/to/link', | |
| 'title' => 'Link title', | |
| 'description' => 'Link text', | |
| 'groups' => array('group1', 'group2'), // 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' => '', // optional CSS classes to apply to link. See: http://getbootstrap.com/css/#buttons | |
| 'icon' => 'path/to/icon' // optional icon to use with the link | |
| ); | |
| */ | |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The source code above is part of our online course on customizing AppGini web applications. The course takes you step-by-step into expanding your applications to fit your business needs. No programming experience is assumed ... we'll explain each line in an easy to follow pace. Learn more and get 10% off the course here: https://www.udemy.com/customizing-appgini-web-applications/?couponCode=TENOFF