id_count = count(explode('/', $this->path)); $wildcard = isset($this->entityInfo['admin ui']['menu wildcard']) ? $this->entityInfo['admin ui']['menu wildcard'] : '%entity_object'; $id_count = count(explode('/', $this->path)); // The content menu. $items[$this->path] = array( 'title' => 'Tripal Content', 'page callback' => 'tripal_entities_content_view', 'file' => 'includes/tripal_entities.admin.inc', 'file path' => drupal_get_path('module', 'tripal_entities'), 'access arguments' => array('administer tripal data'), 'type' => MENU_LOCAL_TASK, 'weight' => -9 ); $items['bio-data/add'] = array( 'title' => 'Add Tripal Content', 'page callback' => 'tripal_entities_add_page', 'access arguments' => array('administer tripal data'), ); // Add a menu item for creating each bundle $bundles = array_keys($this->entityInfo['bundles']); foreach ($bundles as $bundle_name) { $matches = array(); if (preg_match('/^bio-data_(.*?)$/', $bundle_name, $matches)) { $bundle = tripal_load_bundle_entity($bundle_name); // Get the term for this bundle $term = entity_load('TripalTerm', array('id' => $matches[1])); $term = reset($term); // Set a custom page for adding new tripal data entities. $items['bio-data/add/' . $term->id] = array( 'title' => ucfirst($bundle->label), 'description' => tripal_get_bundle_variable('description', $bundle->id, $term->definition), 'page callback' => 'drupal_get_form', 'page arguments' => array('tripal_entities_entity_form', 2), 'access callback' => 'tripal_entities_entity_access', 'access arguments' => array('edit'), ); } } // Link for viewing a tripal data type. $items['bio-data/' . $wildcard] = array( 'title callback' => 'tripal_entities_entity_title', 'title arguments' => array(1), 'page callback' => 'tripal_entities_view_entity', 'page arguments' => array(1), 'access callback' => 'tripal_entities_entity_access', 'access arguments' => array('view', 1), 'type' => MENU_CALLBACK, ); // 'View' tab for an individual entity page. $items['bio-data/' . $wildcard . '/view'] = array( 'title' => 'View', 'page callback' => 'tripal_entities_view_entity', 'page arguments' => array(1), 'access callback' => 'tripal_entities_entity_access', 'access arguments' => array('view', 1), 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10, ); // 'Edit' tab for an individual entity page. $items['bio-data/' . $wildcard . '/edit'] = array( 'title' => 'Edit', 'page callback' => 'drupal_get_form', 'page arguments' => array('tripal_entities_entity_form', NULL, 1), 'access callback' => 'tripal_entities_entity_access', 'access arguments' => array('edit', 1), 'type' => MENU_LOCAL_TASK, 'weight' => -8, ); // Menu item for deleting tripal data entities. $items['bio-data/' . $wildcard . '/delete'] = array( 'title' => 'Delete', 'page callback' => 'drupal_get_form', 'page arguments' => array('tripal_entities_entity_delete_form', 1), 'access callback' => 'tripal_entities_entity_access', 'access arguments' => array('edit', 1), 'type' => MENU_CALLBACK, 'weight' => 10, ); return $items; } } /** * * @param unknown $entity */ function tripal_entity_manage_fields($entity) { drupal_goto('admin/structure/bio-data/manage/' . $entity->name . '/fields'); return ''; } /** * Menu callback to display an entity. * * As we load the entity for display, we're responsible for invoking a number * of hooks in their proper order. * * @see hook_entity_prepare_view() * @see hook_entity_view() * @see hook_entity_view_alter() */ function tripal_entities_view_entity($entity, $view_mode = 'full') { $content = ''; $controller = entity_get_controller($entity->type); $content = $controller->view(array($entity->id => $entity)); drupal_set_title($entity->title); return $content; } /** * Provide a data listing for tripal entites (ie: biological data). * * This function is a callback in a menu item which is set in the * TripalEntityUIController class. */ function tripal_entities_content_view() { // Retrieve our data listing form and render it. $form = drupal_get_form('tripal_entities_content_overview_form'); $output = drupal_render($form); // Set the breadcrumb. $breadcrumb = array(); $breadcrumb[] = l('Home', ''); $breadcrumb[] = l('Administration', 'admin'); drupal_set_breadcrumb($breadcrumb); return $output; } /** * Display a listing of Tripal entities. * * @TODO Filters and bulk operations needed to be added to this form. * * @param array $form * @param array $form_state * @return * A form array describing this listing to the Form API. */ function tripal_entities_content_overview_form($form, &$form_state) { // Set the title to be informative (defaults to content for some reason). drupal_set_title('Tripal Content'); // Retrieve a pages list of all tripal entitles (ie: biological data). // This will return the 25 most recently created entities. $entities = db_select('tripal_entity', 'td') ->fields('td') ->orderBy('created', 'DESC') ->range(0,25) ->execute(); $headers = array('Title', 'Vocabulary', 'Term', 'Author', 'Status', 'Updated', 'Operations'); $rows = array(); // For each entity retrieved add a row to the data listing. while ($entity = $entities->fetchObject()) { // Get the term $term = entity_load('TripalTerm', array('id' => $entity->term_id)); $term = reset($term); $vocab = entity_load('TripalVocab', array('id' => $term->vocab_id)); $vocab = reset($vocab); // Retrieve details about the user who created this data. $author = user_load($entity->uid); // Add information to the table. $rows[] = array( l($entity->title, 'bio-data/' . $entity->id), $vocab->namespace, $term->name, l($author->name, 'user/' . $entity->uid), $entity->status == 1 ? 'published' : 'unpublished', format_date($entity->changed, 'short'), l('edit', 'bio-data/' . $entity->id . '/edit') . '  ' . l('delete', 'bio-data/' . $entity->id . '/delete') ); } // If there are no entites created yet then add a message to the table to // provide guidance to administrators. if (empty($rows)) { $rows[] = array( array( 'data' => t('No Tripal content available.'), 'colspan' => 7 ) ); } // Render the data listing. $table_vars = array( 'header' => $headers, 'rows' => $rows, 'attributes' => array(), 'sticky' => TRUE, 'caption' => '', 'colgroups' => array(), 'empty' => '', ); $form['results'] = array( '#type' => 'markup', '#markup' => theme('table', $table_vars), ); return $form; } /** * */ function tripal_entities_entity_form($form, &$form_state, $term_id = '', $entity = NULL) { $bundle_name = 'bio-data_' . $term_id; // Add a vertical tabs element $form['entity_form_vtabs'] = array( '#type' => 'vertical_tabs', '#weight' => 999, ); // If the entity doesn't exist then create one. if (!$entity) { $entity = entity_get_controller('TripalEntity')->create(array('bundle' => $bundle_name, 'term_id' => $term_id)); field_attach_form('TripalEntity', $entity, $form, $form_state); $form['add_button'] = array( '#type' => 'submit', '#value' => t('Save'), '#name' => 'add_data', '#weight' => 1000 ); } else { field_attach_form('TripalEntity', $entity, $form, $form_state); $form['update_button'] = array( '#type' => 'submit', '#value' => t('Update'), '#name' => 'update_data', '#weight' => 1000 ); $form['delete_button'] = array( '#type' => 'submit', '#value' => t('Delete'), '#name' => 'delete_data', '#weight' => 1001 ); } // The entity object must be added to the $form_state in order for // the Entity API to work. It must have a key of the entity name. $form_state['TripalEntity'] = $entity; $form['#prefix'] = "
"; $form['#suffix'] = "
"; return $form; } /** * An Ajax callback for the tripal_entities_entity_form. */ function tripal_entities_entity_form_ajax_callback($form, $form_state) { // return the form so Drupal can update the content on the page return $form; } /** * Implements hook_validate() for the tripal_entities_entity_form. */ function tripal_entities_entity_form_validate($form, &$form_state) { if (array_key_exists('clicked_button', $form_state) and $form_state['clicked_button']['#name'] =='add_data') { $entity = $form_state['TripalEntity']; field_attach_form_validate('TripalEntity', $entity, $form, $form_state); } } /** * Implements hook_submit() for the tripal_entities_entity_form. */ function tripal_entities_entity_form_submit($form, &$form_state) { $entity = $form_state['TripalEntity']; if ($form_state['clicked_button']['#name'] =='cancel') { $form_state['redirect'] = "bio-data/" . $entity->id; } if ($form_state['clicked_button']['#name'] =='update_data' or $form_state['clicked_button']['#name'] =='add_data') { $entityform = entity_ui_controller('TripalEntity')->entityFormSubmitBuildEntity($form, $form_state); if ($entityform->save()) { $form_state['redirect'] = "bio-data/" . $entity->id; } else { drupal_set_message('Cannot save entity', 'error'); } } if ($form_state['clicked_button']['#name'] =='delete_data') { $form_state['redirect'] = 'bio-data/' . $entity->id .'/delete'; } } /** * Provides a list of TripalEntity types (bundles) for the user to add. * * This function is a callback in a menu item which is set in the * TripalEntityUIController class. */ function tripal_entities_add_page() { $item = menu_get_item(); $content = system_admin_menu_block($item); // Bypass the node/add listing if only one content type is available. if (count($content) == 1) { $item = array_shift($content); drupal_goto($item['href']); } return theme('tripal_entities_add_list', array('content' => $content)); } /** * Returns HTML for a list of available node types for node creation. * * @param $variables * An associative array containing: * - content: An array of content types. * * @ingroup themeable */ function theme_tripal_entities_add_list($variables) { $content = $variables['content']; $output = ''; if ($content) { $output = '
'; foreach ($content as $item) { $output .= '
' . l($item['title'], $item['href'], $item['localized_options']) . '
'; $output .= '
' . filter_xss_admin($item['description']) . '
'; } $output .= '
'; } else { $output = tripal_set_message( t('This page is for adding Tripal content to your site. However, before you can add data you have to specify what types of data your site will support. For example, if you want to add genes to be displayed to users, you must first create a data type "gene".'), TRIPAL_INFO, array('return_html' => TRUE) ); $output .= '

' . t('You have not created any biological data types yet. ' . 'Go to the data type creation page to ' . 'add a new biological data type.', array('@create-content' => url('admin/structure/bio-data/add'))) . '

'; } return $output; } /** * Form callback: confirmation form for deleting a tripal_entity. * * @param $tripal_entity The * tripal_entity to delete * * @see confirm_form() */ function tripal_entities_entity_delete_form($form, &$form_state, $entity) { $form_state['entity'] = $entity; $form['#submit'][] = 'tripal_entities_entity_delete_form_submit'; $form = confirm_form($form, t('Click the delete button below to confirm deletion of the record titled: %title', array('%title' => $entity->title)), 'admin/content/tripal_entity', '

' .t('This action cannot be undone.') .'

', t('Delete'), t('Cancel'), 'confirm'); return $form; } /** * Submit callback for tripal_entity_delete_form */ function tripal_entities_entity_delete_form_submit($form, &$form_state) { $entity = $form_state['entity']; $entity_controller = new TripalEntityController($entity->type); if ($entity_controller->delete($entity)) { drupal_set_message(t('The record title "%name" has been deleted.', array('%name' => $entity->title))); $form_state['redirect'] = 'admin/content/tripal_entitys'; } else { drupal_set_message(t('The tripal_entity %name was not deleted.', array('%name' => $entity->title)), "error"); } }