You are here

function systeminfo_admin_overview_database in System Information 7.2

1 call to systeminfo_admin_overview_database()
systeminfo_admin_overview in ./systeminfo.admin.inc
Menu callback; retrieves overview page.

File

./systeminfo.admin.inc, line 112
Admin page callbacks for the systeminfo module.

Code

function systeminfo_admin_overview_database() {
  $rows = array();
  $output = '<h3>' . t('Database system') . '</h3>';
  $output .= '<p>' . t('More information about the current state of the database system can be found <a href="@database" title="Display current state the database system.">here</a>.', array(
    '@database' => url('admin/reports/systeminfo/database'),
  )) . '</p>';
  $output .= theme('table', array(
    'header' => array(),
    'rows' => $rows,
    'attributes' => array(
      'class' => array(
        'systeminfo',
        'systeminfo_width50',
      ),
    ),
  ));
  return $output;
}