Last active
May 5, 2018 21:23
-
-
Save init90/70aec7e041ad8c800a5b1c6fbedcdf97 to your computer and use it in GitHub Desktop.
drupal 7, render array link.
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
| $form['full_calendar_link'] = array( | |
| '#type' => 'link', | |
| '#title' => '<i class="fa fa-calendar fa-2x"></i>', | |
| '#href' => 'fc/student-reports/calendar', | |
| '#options' => array( | |
| 'html' => TRUE, | |
| 'query' => array('assignee' => 'All'), | |
| 'attributes' => array( | |
| 'title' => t('Full calendar'), | |
| 'class' => array('ctools-use-modal'), | |
| ) | |
| ), | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment