25 lines
768 B
PHP
25 lines
768 B
PHP
<?php
|
|
/** \file scripts\page\tel.php
|
|
* \brief DI webinterface telephone script.
|
|
* \author Rob Schalken, Core|Vision
|
|
* \version 1.0
|
|
* \date 17-10-2008
|
|
*
|
|
* This file contains the telephone script. This file displays that the tel is not supported
|
|
*/
|
|
|
|
echo "<img src=\"" . SKIN_DIR . $_SESSION[$_PAGE_INFO['id']]['skin'] . "/" . $_PAGE_INFO['ini']['image']['header_logo'] . "\" alt=\"\" height=\"48\" width=\"117\">";
|
|
echo "<h2>";
|
|
echo _("Telephone access not allowed");
|
|
echo "</h2>\n";
|
|
echo "<p>";
|
|
echo _("For more info contact:");
|
|
echo "<br><br>Dual Inventive<br>";
|
|
echo "Belgiëstraat 5<br>";
|
|
echo "5061 KG Oisterwijk<br>";
|
|
echo "T +31 013 533 9969<br>";
|
|
echo "F +31 013 533 9970<br>";
|
|
echo "W www.dualinventive.eu";
|
|
echo "</p>\n";
|
|
|
|
?>
|