c_picToolSavant.php
397 Bytes
<?php
require_once SAVANT_SMALL;
class c_picToolSavant extends SavantSmall
{
const DBHOST = 'localhost';
const DBUSER = 'picadmin';
const DBPASS = '1Rz3ftb.';
const DBNAME = 'bilder_new';
function __construct()
{
parent::__construct ();
$this->addPath ('template', TPLDIR);
}
function is_set($varname)
{
if ($this->getVars($varname))
return true;
return false;
}
}
?>