function admin_display_tools_screen

6.x admin.module admin_display_tools_screen()

This page displays all the tools that the user has access to use.

File

modules/admin/admin.module, line 506
The administrative configurations for FlightPath.

Code

function admin_display_tools_screen() {

  fp_add_css(fp_get_module_path("admin") . '/css/admin.css');
  $rtn = "";


  $rtn .= "<div class='display-admin-tools-page'>";


  $rtn .= fp_render_menu_block("", "admin-tools");

  $rtn .= "</div>";





  return $rtn;
}