File: /home/cafsindia/lifemaze_in/lp_lib/lpObject.php
<?php
/**********************************************************
Filename: lpObject.php
Description: factory class to manufacture the required objects
Author: uday
Created on: AUG, 1 2018
Approved on:
------------------------------------------------------------
Modification Details
Changed by:
------------------------------------------------------------
**********************************************************/
require_once 'dbobject.php';
require_once 'lp_db.php';
require_once 'lp_session.php';
require_once 'lp_customer.php';
class lpObject{
public static function newObject($className)
{
if(include_once $className.'.php') {
return new $className;
}else{
throw new Exception("Unable to create a $className Object");
}
}
}