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.
32 lines
846 B
32 lines
846 B
<?php
|
|
/*****************************************************************************
|
|
IP Reg, a PHP/MySQL IPAM tool
|
|
Copyright (C) 2007-2009 Wietse Warendorff (up to v0.5)
|
|
Copyright (C) 2011-2023 Thomas Hooge
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
*****************************************************************************/
|
|
|
|
// global version string
|
|
$config_version = 'v0.8';
|
|
|
|
// available languages
|
|
$config_lang = array('de', 'en');
|
|
|
|
include("lib/functions.php");
|
|
|
|
require("lib/db.class.php");
|
|
$db = new Db($dblink);
|
|
|
|
require("lib/user.class.php");
|
|
$user = new User();
|
|
|
|
require_once('smarty3/Smarty.class.php');
|
|
$smarty = new Smarty();
|
|
$smarty->template_dir = 'tpl';
|
|
$smarty->compile_dir = 'tpl_c';
|
|
$smarty->registerPlugin('function', 'treelist', 'print_tree');
|
|
|
|
$smarty->assign("suser_tooltips", $_SESSION['suser_tooltips'] ?? 'off');
|
|
|
|
?>
|
|
|