12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- function tripal_project_admin_project_view() {
- $output = '';
-
- $breadcrumb = array();
- $breadcrumb[] = l('Home', '<front>');
- $breadcrumb[] = l('Administration', 'admin');
- $breadcrumb[] = l('Tripal', 'admin/tripal');
- $breadcrumb[] = l('Chado', 'admin/tripal/chado');
- $breadcrumb[] = l('Projects', 'admin/tripal/chado/tripal_project');
- drupal_set_breadcrumb($breadcrumb);
-
- $view = views_embed_view('tripal_project_admin_projects','default');
- if (isset($view)) {
- $output .= $view;
- }
- else {
- $output .= '<p>The Project module uses primarily views to provide an '
- . 'administrative interface. Currently one or more views needed for this '
- . 'administrative interface are disabled. <strong>Click each of the following links to '
- . 'enable the pertinent views</strong>:</p>';
- $output .= '<ul>';
- $output .= '<li>'.l('Projects View', 'admin/tripal/chado/tripal_project/views/projects/enable').'</li>';
- $output .= '</ul>';
- }
- return $output;
- }
- function tripal_project_admin($form, $form_state) {
- $form = array();
-
-
- $details = array(
- 'module' => 'tripal_project',
- 'content_type' => 'chado_project',
-
-
- 'options' => array(
- '[project.name]' => 'project Name Only',
-
- '[project.name]' => 'Unique Contraint: The project name'
- ),
-
- 'unique_option' => '[project.name]'
- );
-
-
- chado_add_admin_form_set_title($form, $form_state, $details);
-
-
- $details = array(
- 'module' => 'tripal_project',
- 'content_type' => 'chado_project',
-
-
- 'options' => array(
- '/project/[project.name]' => 'Project Name Only',
-
-
-
- '/project/[project.project_id]' => 'Unique Contraint: The Project ID'
- ),
- );
-
-
- chado_add_admin_form_set_url($form, $form_state, $details);
- return system_settings_form($form);
- }
|