You are here

function dba_select_all_js in Database Administration 5

1 call to dba_select_all_js()
theme_dba_database_overview_form in ./dba.module

File

./dba.module, line 527
Allows administrators direct access to their Drupal database. Written by Jeremy Andrews <jeremy@kerneltrap.org>, June 2004. PostgreSQL functionality provided by AAM <aam@ugpl.de> Major security audit, porting, and maintenance by Derek…

Code

function dba_select_all_js() {
  $output = "<a href=\"javascript:checkoff('dba-database-overview-form',1)\">";
  $output .= t('select all');
  $output .= "</a>&nbsp;&nbsp;|&nbsp;&nbsp;";
  $output .= "<a href=\"javascript:checkoff('dba-database-overview-form',0)\">";
  $output .= t('clear all');
  $output .= "</a><br>";
  return $output;
}