'checkbox', '#title' => t('Use menu the page belongs to for the breadcrumb.'), '#description' => t('By default, Drupal 6 will use the Navigation menu for the breadcrumb. If you want to use the menu the active page belongs to for the breadcrumb, enable this option.'), '#default_value' => variable_get('menu_breadcrumb_determine_menu', 1), ); $form['menu_breadcrumb_append_node_title'] = array( '#type' => 'checkbox', '#title' => t('Append page title to breadcrumb'), '#description' => t('Choose whether or not the page title should be included in the breadcrumb.'), '#default_value' => variable_get('menu_breadcrumb_append_node_title', 0), ); $form['menu_breadcrumb_append_node_url'] = array( '#type' => 'checkbox', '#title' => t('Appended page title as an URL.'), '#description' => t('Choose whether or not the appended page title should be an URL.'), '#default_value' => variable_get('menu_breadcrumb_append_node_url', 0), ); $form['menu_breadcrumb_hide_on_single_item'] = array( '#type' => 'checkbox', '#title' => t('Hide the breadcrumb if the breadcrumb only contains the link to the front page.'), '#description' => t('Choose whether or not the breadcrumb should be hidden if the breadcrumb only contains a link to the front page (Home.).'), '#default_value' => variable_get('menu_breadcrumb_hide_on_single_item', 0), ); return system_settings_form($form); }