<?php
//=================================================================
// Lead Follow-Up Database
// Copyright (c) phpkobo.com ( http://www.phpkobo.com/ )
// Email : hide@address.com
// ID : LF201_107
//
// This software is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; version 2 of the
// License.
//
// [Installation Guide]
// http://www.phpkobo.com/doc.php?d=install&p=LF201_107
//
//=================================================================
//----------------------------------------------------------------
// cls_ps_about
//----------------------------------------------------------------
class cls_ps_about extends cls_ps_base
{
//------------------------------------------------------------
// CommandProc
//------------------------------------------------------------
function CommandProc( &$sc )
{
//-- [BEGIN] Assign PageSig
$pagesig_key = 'pagesig:' . get_class( $this );
//-- [END] Assign PageSig
//-- [BEGIN] Read command
$cmd = $sc->Cmd();
//-- [END] Read command
switch( $cmd )
{
//------------------------------------------------------
// Detail
//------------------------------------------------------
case 'detail':
//-- [BEGIN] Set PageID
$sc->SetPageID( "detail" );
//-- [END] Set PageID
//-- [BEGIN] Set template page
$this->SetPage( $sc, "detail" );
//-- [END] Set template page
break;
//------------------------------------------------------
// Page Not Found
//------------------------------------------------------
default:
//-- [BEGIN] Unknown command
$sc->RaiseError( SC_ERR_PAGE_NOT_FOUND );
//-- [END] Unknown command
break;
}
}
}
//----------------------------------------------------------------
// END OF FILE
//----------------------------------------------------------------
?>