CORE POS - IS4C
The CORE POS front end
EgoFooter.php

Footer Box modules are pretty simple. The header_content() method defines the label above the box and the display_content() method defines the box itself. If needed you can define CSS via the class properties.

This module just shows a constant reminder about the store's most critical department.

<?php
class EgoFooter extends FooterBox {
var $header_css = "background: #990000; color: #ffffff;";
var $display_css = "font-weight: bold; font-size: 200%;";
function header_content(){
return "notice";
}
function display_content(){
return "IT Rules!";
}
}
?>