echo "\n";
}
+ /** Get foreign keys for table
+ * @param string
+ * @return array same format as foreign_keys()
+ */
+ function foreignKeys($table) {
+ return foreign_keys($table);
+ }
+
/** Find backward keys for table
* @param string
* @param string
* @return array array($col => array())
*/
function column_foreign_keys($table) {
+ global $adminer;
$return = array();
- foreach (foreign_keys($table) as $foreign_key) {
+ foreach ($adminer->foreignKeys($table) as $foreign_key) {
foreach ($foreign_key["source"] as $val) {
$return[$val][] = $foreign_key;
}
$schema[$row["Name"]]["fields"][$name] = $field;
}
$schema[$row["Name"]]["pos"] = ($table_pos[$row["Name"]] ? $table_pos[$row["Name"]] : array($top, 0));
- if (fk_support($row)) {
- foreach (foreign_keys($row["Name"]) as $val) {
- if (!$val["db"]) {
- $left = $base_left;
- if ($table_pos[$row["Name"]][1] || $table_pos[$val["table"]][1]) {
- $left = min(floatval($table_pos[$row["Name"]][1]), floatval($table_pos[$val["table"]][1])) - 1;
- } else {
- $base_left -= .1;
- }
- while ($lefts[(string) $left]) {
- // find free $left
- $left -= .0001;
- }
- $schema[$row["Name"]]["references"][$val["table"]][(string) $left] = array($val["source"], $val["target"]);
- $referenced[$val["table"]][$row["Name"]][(string) $left] = $val["target"];
- $lefts[(string) $left] = true;
+ foreach ($adminer->foreignKeys($row["Name"]) as $val) {
+ if (!$val["db"]) {
+ $left = $base_left;
+ if ($table_pos[$row["Name"]][1] || $table_pos[$val["table"]][1]) {
+ $left = min(floatval($table_pos[$row["Name"]][1]), floatval($table_pos[$val["table"]][1])) - 1;
+ } else {
+ $base_left -= .1;
}
+ while ($lefts[(string) $left]) {
+ // find free $left
+ $left -= .0001;
+ }
+ $schema[$row["Name"]]["references"][$val["table"]][(string) $left] = array($val["source"], $val["target"]);
+ $referenced[$val["table"]][$row["Name"]][(string) $left] = $val["target"];
+ $lefts[(string) $left] = true;
}
}
$top = max($top, $schema[$row["Name"]]["pos"][0] + 2.5 + $pos);
Disable XSS "protection" of IE8
Timestamp in export
Link to bookmark SQL command
+Support for virtual foreign keys
Immunity against zend.ze1_compatibility_mode
Fix last page with empty result set
echo "<a href='" . h(remove_from_uri("page")) . "&page=last' title='" . lang('Page') . ": " . lang('last') . "'>>></a>\n";
}
+ function foreignKeys($table) {
+ return foreign_keys($table);
+ }
+
function backwardKeys($table, $tableName) {
$return = array();
foreach (get_rows("SELECT TABLE_NAME, CONSTRAINT_NAME, COLUMN_NAME, REFERENCED_COLUMN_NAME