1 installer.pages.inc installer_browser_manual_install_link($form, &$form_state)

Shows the link to open the manual install dialog.

File

core/modules/installer/installer.pages.inc, line 993
Page callbacks used by the Installer browse pages.

Code

function installer_browser_manual_install_link($form, &$form_state) {
  $manual['link'] = array(
    '#type' => 'link',
    '#title' => t('Manual installation'),
    '#href' => 'admin/installer/manual',
    '#attributes' => array(
      'class' => array('use-ajax'),
      'data-dialog' => 'true',
      'data-dialog-options' => json_encode(array('width' => 700, 'dialogClass' => 'project-dialog')),
    ),
  );

  return $manual;
}