Functions
Search API
Primary tabs
Name | Location | Description |
---|---|---|
blank_degrees_perm |
modules/ |
|
blank_degrees_prereqs_get_prereq_warnings_for_course |
modules/ |
Implements hook_prereqs_get_prereq_warnings_for_course |
blank_degrees_select_degree_form |
modules/ |
This form lets the user select which degree they wish to view. |
blank_degrees_select_degree_form_submit |
modules/ |
Submit handler for degree selection |
blocks_blocks |
modules/ |
Implementation of hook_blocks |
blocks_content_register_content_type |
modules/ |
Implementatin of content's hook_content_register_content_type |
blocks_get_available_blocks |
modules/ |
Return an array of blocks which we can assign and display, as defined by other modules' hook_blocks function. |
blocks_get_sections_and_regions |
modules/ |
Look through our modules for hook_block_region and assemble them in an array. |
blocks_manage_blocks_form |
modules/ |
This form lets the user manage the various blocks in the system. |
blocks_manage_blocks_form_submit |
modules/ |
Submit handler for the manage blocks form. |
blocks_menu |
modules/ |
|
blocks_perm |
modules/ |
|
blocks_render_block |
modules/ |
Implementation of hook_render_block. We are going to render out our content_block content type. |
blocks_render_blocks |
modules/ |
This function will actually render the HTML for the blocks requested for a particular section and region. |
clear_session_form_values |
includes/ |
Clear the form submissions variable from the SESSION for this callback. |
comments_can_access_comments |
modules/ |
Used by the menu to determine if the comments tab should appear. |
comments_comment_form |
modules/ |
This is the form to enter a new comment. |
comments_comment_form_submit |
modules/ |
|
comments_display_main |
modules/ |
This displays the primary Comments tab, where we see past comments and can enter a new one (with the right permissions). |
comments_get_comment |
modules/ |
|
comments_get_comments |
modules/ |
Returns an array of comments for this student, sorted most recent first. |
comments_menu |
modules/ |
|
comments_perform_delete_comment |
modules/ |
"delete" a comment (actually, all we do is flag it as deleted) |
comments_perm |
modules/ |
|
comments_popup_display_all_comments |
modules/ |
Displays all comments for a student in a popup window, meant for printing. |
comments_popup_display_comment |
modules/ |
|
comments_render_comment |
modules/ |
Display the comment array in a pretty way. |
content_blocks |
modules/ |
hook_blocks. Returns an array of available blocks offered by this module in this format: array( delta => "This is the title of the block.", ), ); |
content_content_load |
modules/ |
Implementation of content's hook_content_load |
content_content_register_content_type |
modules/ |
Implementation of this module's hook_content_register_content_type. |
content_display_content_admin_list |
modules/ |
Display a list of content for the administrator |
content_edit_content_form |
modules/ |
This form lets the user edit some piece of content |
content_edit_content_form_submit |
modules/ |
Submit handler for the edit content form. |
content_get_types |
modules/ |
Return an array with all the possible content types known to FlightPath |
content_handle_delete_content |
modules/ |
|
content_install |
modules/ |
Hook install. Called when the module is installed on the admin modules page. |
content_load |
modules/ |
Load the content from the database and return an array, by calling hook_content_load. |
content_menu |
modules/ |
|
content_menu_handle_replacement_pattern |
modules/ |
This is an implementation of hook_menu_handle_replacement_pattern. It will search for and replace replacement patterns which we are aware of it in $str. |
content_perm |
modules/ |
Implementation of hook_perm |
content_render_block |
modules/ |
Called when it is time to render the block in question. Expected to return an array which looks like this: array( "title" => "Some title goes here.", "body" => "this is the primary body of the block", ); |
content_render_content |
modules/ |
Return the HTML rendering the content we have in the database. |
content_user_access |
modules/ |
Custom user access function to determine if the user can add, edit, etc, the content |
content_view_content |
modules/ |
Display the content specified in the GET's cid. |
convert_bbcode_to_html |
includes/ |
|
convert_html_to_bbcode |
includes/ |
|
course_search_display_courses |
modules/ |
Show the user their select of courses. |
course_search_display_edit_courses |
modules/ |
Display a plain list of courses, making it easier for admins to edit schedules and details in one spot. |
course_search_display_search |
modules/ |
Displays the search pulldown for the user to use to find courses. |
course_search_display_view_reports |
modules/ |