<?php
class copyright {
public function show_copy() {
print '© ' . COPYRIGHT . ' • Powered by <a href="' . URL_OWNER . '" target="_blank">' . SCRIPTNAME . '</a> ' . VERSION;
}
}
class informations {
public function show_info() {
print '<em>' . FRAMEWORK . '</em>';
}
}
class admin_handle {
public function show_admin() {
print ADMINPANEL;
}
}
?>