adminerevo/examples/editor-cds/index.php
jakubvrana 70b72075ca Customization example
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@859 7c3ca157-0c34-0410-bff1-cbf682f78f5c
2009-07-20 15:47:12 +00:00

25 lines
339 B
PHP

<?php
// try to compile current version
$_SERVER["argv"] = array("", "editor");
ob_start();
include "../../compile.php";
ob_end_clean();
class Adminer {
function name() {
return 'CDs';
}
function credentials() {
return array('localhost', 'ODBC', '');
}
function database() {
return 'cds';
}
}
include "./editor.php";