tripal_project_base.tpl.php 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?php
  2. $project = $variables['node']->project;
  3. // get the project description. The first iteration of the project
  4. // module incorrectly stored the project description in the Drupal
  5. // node->body field. Also, the project.descriptin field is only 255
  6. // characters which is not large neough. Therefore, we store the description
  7. // in the chado.projectprop table. For backwards compatibility, we
  8. // will check if the node->body is empty and if not we'll use that instead.
  9. // If there is data in the project.description field then we will use that, but
  10. // if there is data in the projectprop table for a descrtion then that takes
  11. // precedence
  12. $description = '';
  13. if (property_exists($node, 'body')) {
  14. $description = $node->body;
  15. }
  16. if ($project->description) {
  17. $description = $project->description;
  18. }
  19. else {
  20. $projectprop = tripal_project_get_property($project->project_id, 'Project Description');
  21. $description = $projectprop->value;
  22. } ?>
  23. <div class="tripal_project-data-block-desc tripal-data-block-desc"></div><?php
  24. // the $headers array is an array of fields to use as the colum headers.
  25. // additional documentation can be found here
  26. // https://api.drupal.org/api/drupal/includes%21theme.inc/function/theme_table/7
  27. // This table for the project has a vertical header (down the first column)
  28. // so we do not provide headers here, but specify them in the $rows array below.
  29. $headers = array();
  30. // the $rows array contains an array of rows where each row is an array
  31. // of values for each column of the table in that row. Additional documentation
  32. // can be found here:
  33. // https://api.drupal.org/api/drupal/includes%21theme.inc/function/theme_table/7
  34. $rows = array();
  35. // Project Name row
  36. $rows[] = array(
  37. array(
  38. 'data' => 'Project Name',
  39. 'header' => TRUE,
  40. 'width' => '20%',
  41. ),
  42. $project->name
  43. );
  44. // allow site admins to see the feature ID
  45. if (user_access('administer tripal')) {
  46. // Project ID
  47. $rows[] = array(
  48. array(
  49. 'data' => 'Project ID',
  50. 'header' => TRUE,
  51. 'class' => 'tripal-site-admin-only-table-row',
  52. ),
  53. array(
  54. 'data' => $project->project_id,
  55. 'class' => 'tripal-site-admin-only-table-row',
  56. ),
  57. );
  58. }
  59. // the $table array contains the headers and rows array as well as other
  60. // options for controlling the display of the table. Additional
  61. // documentation can be found here:
  62. // https://api.drupal.org/api/drupal/includes%21theme.inc/function/theme_table/7
  63. $table = array(
  64. 'header' => $headers,
  65. 'rows' => $rows,
  66. 'attributes' => array(
  67. 'id' => 'tripal_project-table-base',
  68. 'class' => 'tripal-data-table'
  69. ),
  70. 'sticky' => FALSE,
  71. 'caption' => '',
  72. 'colgroups' => array(),
  73. 'empty' => '',
  74. );
  75. // once we have our table array structure defined, we call Drupal's theme_table()
  76. // function to generate the table.
  77. print theme_table($table);
  78. if ($description) { ?>
  79. <div style="text-align: justify"><?php print $description; ?></div> <?php
  80. }