mirror of
https://github.com/vrana/adminer.git
synced 2025-08-18 04:11:27 +02:00
Extensibility basics
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@782 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
18
adminer/include/adminer.inc.php
Normal file
18
adminer/include/adminer.inc.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
class AdminerBase {
|
||||
|
||||
function table_list($row) {
|
||||
global $SELF;
|
||||
echo '<a href="' . htmlspecialchars($SELF) . 'select=' . urlencode($row["Name"]) . '">' . lang('select') . '</a> ';
|
||||
echo '<a href="' . htmlspecialchars($SELF) . (isset($row["Rows"]) ? 'table' : 'view') . '=' . urlencode($row["Name"]) . '">' . $this->table_name($row) . "</a><br />\n";
|
||||
}
|
||||
|
||||
function table_name($row) {
|
||||
return htmlspecialchars($row["Name"]);
|
||||
}
|
||||
|
||||
function field_name($fields, $key) {
|
||||
return htmlspecialchars($key);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user