• Sign in

discontinued / image-manager · Files

Dogs2 white

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Forks
  • Snippets
  • Network
  • image-manager
  • libs
  • c_picToolSavant.php
  • Erster import der aktuellen Arbitskopie des neuen Bildertools
    a5903343
    Georg Hopp authored
    2016-03-19 09:44:47 +0100  
    Browse Files »
c_picToolSavant.php 397 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<?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;
	}
}

?>