function dba_admin_tables_verify_op in Database Administration 5
Menu callback to verify the administrator wants to backup, empty or drop the selected table(s) by means of a confirm form.
1 string reference to 'dba_admin_tables_verify_op'
- dba_menu in ./
dba.module
File
- ./
dba.module, line 445 - 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_admin_tables_verify_op($op) {
$tables = dba_get_active_tables(0);
return drupal_get_form('dba_verify', $tables, $op);
}