You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
397 B
27 lines
397 B
<?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;
|
|
}
|
|
}
|
|
|
|
?>
|