nid}"); return node_view($node, FALSE, TRUE, TRUE); } return views_embed_view('book_listing', 'page_1'); } /** * Settings form for book feature. */ function atrium_book_settings() { $form = array(); $form['atrium_book_mode'] = array( '#title' => t('Navigation mode'), '#type' => 'select', '#description' => t('Choose the navigation style for the book menu.'), '#options' => array( 'tree' => t('Tree menu'), 'ajax' => t('AJAX with breadcrumb') ), '#default_value' => variable_get('atrium_book_mode', 'ajax'), ); $form['atrium_book'] = array( '#title' => t('Overview page'), '#type' => 'select', '#description' => t('Choose the page to display when a user first views this feature.'), '#options' => array(0 => t('Recent updates'), t('Pages') => array()), '#default_value' => variable_get('atrium_book', 0), ); // Collect books in this space into an array if ($view = views_get_view('book_current')) { $view->set_display(); $view->set_items_per_page(0); $view->execute(); if (is_array($view->result) && count($view->result)) { foreach($view->result as $row) { $form['atrium_book']['#options'][t('Pages')][$row->nid] = $row->node_title; } } } return system_settings_form($form); }