Conditional Ajax for DROP TRIGGER

This commit is contained in:
Marc Delisle
2011-02-01 07:42:36 -05:00
parent 414a09a2e0
commit 15fd805b80
2 changed files with 8 additions and 1 deletions

View File

@@ -1830,6 +1830,7 @@ $(document).ready(function() {
/**
* Attach Ajax event handlers for Drop Trigger. Used on tbl_structure.php
* @see $cfg['AjaxEnable']
*/
$(document).ready(function() {

View File

@@ -28,6 +28,12 @@ if ($triggers) {
__('Event'));
$ct=0;
$delimiter = '//';
if ($GLOBALS['cfg']['AjaxEnable']) {
$conditional_class = 'class="drop_trigger_anchor"';
} else {
$conditional_class = '';
}
foreach ($triggers as $trigger) {
$drop_and_create = $trigger['drop'] . $delimiter . "\n" . $trigger['create'] . "\n";
@@ -41,7 +47,7 @@ if ($triggers) {
($ct%2 == 0) ? 'even' : 'odd',
$trigger['name'],
PMA_linkOrButton('tbl_sql.php?' . $url_query . '&sql_query=' . urlencode($drop_and_create) . '&show_query=1&delimiter=' . urlencode($delimiter), $titles['Change']),
'<a class="drop_trigger_anchor" href="sql.php?' . $url_query . '&sql_query=' . urlencode($trigger['drop']) . '" >' . $titles['Drop'] . '</a>',
'<a ' . $conditional_class . ' href="sql.php?' . $url_query . '&sql_query=' . urlencode($trigger['drop']) . '" >' . $titles['Drop'] . '</a>',
$trigger['action_timing'],
$trigger['event_manipulation']);
$ct++;