Skip to content
  • This project
    • Loading...
  • Sign in

sayhoChun / kcSpecialVehicle

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • kcSpecialVehicle
  • common
  • classes
  • FrontBase.php
  • sayhoChun's avatar
    initial commit · 00f7359b
    00f7359b
    sayhoChun committed 2017-02-13 09:30:06 +0900
FrontBase.php 346 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<? include_once $_SERVER["DOCUMENT_ROOT"] . "/common/classes/comm/Common.php" ; ?>
<?
if(!class_exists("FrontBase")){
	class FrontBase extends Common{

		function __construct($req) 
		{
			parent::__construct($req);
		}
		
		function wrapParam()
		{
			$this->req['page']	= ($this->req['page'] == "") ? 1 : $this->req['page'] ;
		}
		
		
	}	
}
?>