You are here

function saml_sp__admin_overview in SAML Service Provider 7

Same name and namespace in other branches
  1. 7.8 saml_sp.admin.inc \saml_sp__admin_overview()
  2. 7.2 saml_sp.admin.inc \saml_sp__admin_overview()
  3. 7.3 saml_sp.admin.inc \saml_sp__admin_overview()

Overview page. Display a list of IDPs in a table.

1 string reference to 'saml_sp__admin_overview'
saml_sp_menu in ./saml_sp.module
Implements hook_menu().

File

./saml_sp.admin.inc, line 12
Admin pages for the SAML Service Provider module.

Code

function saml_sp__admin_overview() {
  return array(
    'idps' => saml_sp__load_all_idps(),
    '#theme' => 'saml_sp__idp_list',
  );
}