Skip to content

Instantly share code, notes, and snippets.

@init90
Last active May 5, 2018 21:23
Show Gist options
  • Select an option

  • Save init90/70aec7e041ad8c800a5b1c6fbedcdf97 to your computer and use it in GitHub Desktop.

Select an option

Save init90/70aec7e041ad8c800a5b1c6fbedcdf97 to your computer and use it in GitHub Desktop.
drupal 7, render array link.
$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