Add Site Info at the bottom

Support and queries relating to all previous versions of ZoneMinder
Locked
dusman
Posts: 12
Joined: Mon Aug 14, 2006 6:10 am

Add Site Info at the bottom

Post by dusman »

Hi there,

Just add a small add on to ZM;

open zm_html.php

add the line "include ("site_info.php");

sample of site_info.php could be the following; check the view type (where you may want the information be displayed.)


<?php
//check view type
if ($view =="console" || $view=="login" || $view=="logout") {
?>

<center>
<p>
<b>
<font color=red>If you see unusual things, remember to contact the following<br></font>
alarm@blalbla.com<br>
Management Office: 911
</b>
</P>
</center>

<?php } ?>
Locked