Línea 54... |
Línea 54... |
54 |
'gotolastused' => 'tool_xmldb',
|
54 |
'gotolastused' => 'tool_xmldb',
|
55 |
'checkindexes' => 'tool_xmldb',
|
55 |
'checkindexes' => 'tool_xmldb',
|
56 |
'checkdefaults' => 'tool_xmldb',
|
56 |
'checkdefaults' => 'tool_xmldb',
|
57 |
'checkforeignkeys' => 'tool_xmldb',
|
57 |
'checkforeignkeys' => 'tool_xmldb',
|
58 |
'checkbigints' => 'tool_xmldb',
|
58 |
'checkbigints' => 'tool_xmldb',
|
59 |
'checkoraclesemantics' => 'tool_xmldb',
|
- |
|
60 |
'reconcilefiles' => 'tool_xmldb',
|
59 |
'reconcilefiles' => 'tool_xmldb',
|
61 |
'doc' => 'tool_xmldb',
|
60 |
'doc' => 'tool_xmldb',
|
62 |
'filemodifiedoutfromeditor' => 'tool_xmldb',
|
61 |
'filemodifiedoutfromeditor' => 'tool_xmldb',
|
63 |
'viewxml' => 'tool_xmldb',
|
62 |
'viewxml' => 'tool_xmldb',
|
64 |
'pendingchangescannotbesavedreload' => 'tool_xmldb'
|
63 |
'pendingchangescannotbesavedreload' => 'tool_xmldb'
|
Línea 106... |
Línea 105... |
106 |
$b .= ' <a href="index.php?action=check_defaults&sesskey=' . sesskey() . '">[' . $this->str['checkdefaults'] . ']</a>';
|
105 |
$b .= ' <a href="index.php?action=check_defaults&sesskey=' . sesskey() . '">[' . $this->str['checkdefaults'] . ']</a>';
|
107 |
// The check bigints button (only for MySQL and PostgreSQL) MDL-11038a
|
106 |
// The check bigints button (only for MySQL and PostgreSQL) MDL-11038a
|
108 |
if ($DB->get_dbfamily() == 'mysql' || $DB->get_dbfamily() == 'postgres') {
|
107 |
if ($DB->get_dbfamily() == 'mysql' || $DB->get_dbfamily() == 'postgres') {
|
109 |
$b .= ' <a href="index.php?action=check_bigints&sesskey=' . sesskey() . '">[' . $this->str['checkbigints'] . ']</a>';
|
108 |
$b .= ' <a href="index.php?action=check_bigints&sesskey=' . sesskey() . '">[' . $this->str['checkbigints'] . ']</a>';
|
110 |
}
|
109 |
}
|
111 |
// The check semantics button (only for Oracle) MDL-29416
|
- |
|
112 |
if ($DB->get_dbfamily() == 'oracle') {
|
- |
|
113 |
$b .= ' <a href="index.php?action=check_oracle_semantics&sesskey=' . sesskey() . '">[' . $this->str['checkoraclesemantics'] . ']</a>';
|
- |
|
114 |
}
|
- |
|
115 |
$b .= ' <a href="index.php?action=check_foreign_keys&sesskey=' . sesskey() . '">[' . $this->str['checkforeignkeys'] . ']</a>';
|
110 |
$b .= ' <a href="index.php?action=check_foreign_keys&sesskey=' . sesskey() . '">[' . $this->str['checkforeignkeys'] . ']</a>';
|
116 |
$b .= '</p>';
|
111 |
$b .= '</p>';
|
117 |
// Send buttons to output
|
112 |
// Send buttons to output
|
118 |
$o .= $b;
|
113 |
$o .= $b;
|