tripal_library_admin.tpl.php 7.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <h3>Tripal Library Administrative Tools Quick Links:</h3>
  2. <ul>
  3. <li><a href="<?php print url("admin/tripal/tripal_library/configuration") ?>">Library Configuration</a></li>
  4. </ul>
  5. <h3>Module Description:</h3>
  6. <p>The Tripal Library module is an interface for the Chado Library module which groups features (sequences) into genetic libraries.
  7. This module provides support for visualization of "library" pages, editing and updating.</p>
  8. <h3>Setup Instructions:</h3>
  9. <ol>
  10. <li><p><b>Set Permissions</b>: The library module supports the Drupal user permissions interface for
  11. controlling access to library content and functions. These permissions include viewing,
  12. creating, editing or administering of
  13. library content. The default is that only the original site administrator has these
  14. permissions. You can <a href="<?php print url('admin/user/roles') ?>">add roles</a> for classifying users,
  15. <a href="<?php print url('admin/user/user') ?>">assign users to roles</a> and
  16. <a href="<?php print url('admin/user/permissions') ?>">assign permissions</a> for the library content to
  17. those roles. For a simple setup, allow anonymous users access to view organism content and
  18. allow the site administrator all other permissions.</p></li>
  19. <li><p><b>Sync any Existing Libraries</b>: Near the top of the ' . l('Library Configuration page', 'admin/tripal/tripal_library/configuration') ?> there is
  20. a Sync Libraries section which provides list of libraries currently in chado which can be sync\'d.
  21. Simply select the libraries you would like to create Drupal/Tripal pages for and click Sync Libraries.</p></li>
  22. </ol>
  23. <h3>Features of this Module:</h3>
  24. <ul>
  25. <li><b>Add/Edit/Delete Libraries</b>: Libraries with no associated features can be created ' . l('here', 'node/add/chado-library') ?> but it is
  26. recommended to create the library using the feature loader. For example, when you load FASTA files using the Tripal loader you are
  27. given the option of specifying a library for all created features. Existing Libraries (regardless of the method used to create them) can be
  28. edited or deleted by clicking the Edit tab at the top of the Library Page.</li>
  29. <li><p><b>Integration with Drupal Views</b>: <a href="http://drupal.org/project/views">Drupal Views</a> is
  30. a powerful tool that allows the site administrator to create lists or basic searching forms of Chado content.
  31. It provides a graphical interface within Drupal to allow the site admin to directly query the Chado database
  32. and create custom lists without PHP programming or customization of Tripal source code. Views can also
  33. be created to filter content that has not yet been synced with Druapl in order to protect access to non
  34. published data (only works if Chado was installed using Tripal). You can see a list of available pre-existing
  35. Views <a href="<?php print url('admin/build/views/') ?>">here</a>, as well as create your own. </p></li>
  36. <li><b>Basic Listing</b>: This module provides a basic <a href="<?php print url('libraries') ?>">library display
  37. tool</a> for finding or listing libraries in Chado. It does not require indexing for Drupal searching but relies
  38. on Drupal Views. <a href="http://drupal.org/project/views">Drupal Views</a> must be installed.</li>
  39. </ul>
  40. <h3>Page Customizations</h3>
  41. <p>There are several ways to customize the look-and-feel for the way Chado data is presented through Tripal.
  42. Below is a description of several methods. These methods may be used in conjunction with one another to
  43. provide fine-grained control.
  44. <ul>
  45. <li><p><b>Integration with Drupal Panels</b>: <a href="http://drupal.org/project/views">Drupal Panels</a>
  46. allows for customization of a page layout if you don\'t want to do PHP/Javascript/CSS programming. Tripal comes with pre-set layouts for library pages. However,
  47. Panels become useful if you prefer a layout that is different from the pre-set layouts. Chado content
  48. is provided to Panels in the form of Drupal "blocks" which you can then place anywhere on a page using the
  49. Panel\'s GUI.</p></li>
  50. <li><p><b>Drupal\'s Content Construction Kit (CCK)</b>: the
  51. <a href="http://drupal.org/project/cck">Content Construction Kit (CCK) </a> is a powerful way to add non-Chado content
  52. to any page without need to edit template files or knowing PHP. You must first download and install CCK.
  53. With CCK, the site administartor can create a new field to appear on the page. For example, currently,
  54. the Chado publication module is not yet supported by Tripal. Therefore, the site administrator can add a text
  55. field to the library pages. This content is not stored in Chado, but will appear on the library page. A field
  56. added by CCK will also appear in the form when editing a library to allow users to manually enter the appropriate
  57. text. If the default pre-set layout and themeing for Tripal is used, it is better to create the CCK element,
  58. indicate that it is not to be shown (using the CCK interface), then manually add the new content type
  59. where desired by editing the templates (as described below). If using Panels, the CCK field can be added to the
  60. location desired using the Panels interface.</p></li>
  61. <li><p><b>Drupal Node Templates</b>: The Tripal packages comes with a "theme_tripal" directory that contains the
  62. themeing for Chado content. The library module has a template file for library "nodes" (Tripal library pages). This file
  63. is named "node-chado_library.tpl.php", and provides javascript, HTML and PHP code for display of the library
  64. pages. You can edit this file to control which types of information (or which library "blocks") are displayed for libraries. Be sure to
  65. copy these template to your primary theme directory for editing. Do not edit them in the "theme_tripal" directory as
  66. future Tripal updates may overwrite your customizations. See the <a href="http://tripal.info">Tripal website </a>
  67. for instructions on how to access variables and other Chado content within the template file.</p></li>
  68. <li><p><b>Library "Block" Templates</b>: In the "theme_tripal" directory is a subdirectory named "tripal_library".
  69. Inside this directory is a set of templates that control distinct types of information for libraries. For example,
  70. there is a "base" template for displaying of data directly from the Chado library table. These templates are used both by Drupal blocks
  71. for use in Drupal Panels (as described above) or for use in the default pre-set layout that the node template
  72. provides (also desribed above). You can customize this template as you desire. Be sure to copy the
  73. template to your primary theme directory for editing. Do not edit them in the "theme_tripal" directory as
  74. future Tripal updates may overwrite your customizations. See the <a href="http://tripal.info">Tripal website </a>
  75. for instructions on how to access variables and other Chado content within the template files.</p></li>
  76. </li>
  77. <li><p><b>Adding Links to the "Resources" Sidebar</b>: If you use the pre-set default Tripal layout for theming, you
  78. will see a "Resources" sidebar on each page. The links that appear on the sidebar are automatically generated
  79. using Javascript for all of the library "Blocks" that appear on the page. If you want to add additional links
  80. (e.g. a link to a views table showing all features of the current library) and you want that link to appear in the
  81. "Resources" sidebar, simply edit the Drupal Node Template (as described above) and add the link to the
  82. section at the bottom of the template file where the resources section is found.</p></li>
  83. </ul>
  84. </p>