$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 = '
' . t('You have not created any biological types yet. Go to the content type creation page to add a new content type.', array('@create-content' => url('admin/structure/BioData/add'))) . '
'; } return $output; } /** * */ function tripal_entities_entity_form($form, &$form_state, $dbxref_id = '', $entity = NULL) { $bundle_id = 'dbxref_' . $dbxref_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('BioData')->create(array('bundle' => $bundle_id)); field_attach_form('BioData', $entity, $form, $form_state); $form['add_button'] = array( '#type' => 'submit', '#value' => t('Save'), '#name' => 'add_data', '#weight' => 1000 ); } else { field_attach_form('BioData', $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['BioData'] = $entity; $form['#prefix'] = "' .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"); } }