File "include.php"
Full Path: /home/krishnamexports/public_html/panel/pages/selfie/include.php
File size: 2.5 KB
MIME-type: text/x-php; charset=us-ascii
Charset: utf-8
<?php
if(isset($_GET['pages']))
{
$path = $_GET['pages'];
if($path=='home_setting')
{
include("pages/home_setting/home_setting.php");
}
if($path=='accountSetting')
{
include("pages/accountSetting.php");
}
if($path=='changePassword')
{
include("changePassword.php");
}
if($path=='slider')
{
include("pages/slider/slider.php");
}
if($path=='assignPermission')
{
include("pages/assignPermission.php");
}
if($path=='state')
{
include("pages/state/state.php");
}
if($path=='city')
{
include("pages/city/city.php");
}
if($path=='pincode')
{
include("pages/pincode/pincode.php");
}
if($path=='category')
{
include("pages/product/category.php");
}
if($path=='subcategory')
{
include("pages/product/subcategory.php");
}
if($path=='polish')
{
include("pages/product/polish.php");
}
if($path=='size')
{
include("pages/product/size.php");
}
if($path=='stone')
{
include("pages/product/stone.php");
}
if($path=='product')
{
include("pages/product/product.php");
}
if($path=='productList')
{
include("pages/product/productList.php");
}
if($path=='product_review')
{
include("pages/master/product_review/product_review.php");
}
if($path=='sign_up')
{
include("pages/signup/sign_up.php");
}
if($path=='employeeRegistration')
{
include("pages/signup/employeeRegistration.php");
}
if($path=='employeeList')
{
include("pages/signup/employeeList.php");
}
if($path=='designationMaster')
{
include("pages/designationMaster.php");
}
if($path=='currencyMaster')
{
include("pages/currency/currencyMaster.php");
}
if($path=='order')
{
include("pages/order/order.php");
}
if($path=='orderInvoice')
{
include("pages/order/orderInvoice.php");
}
if($path=='customOrder')
{
include("pages/order/customOrder.php");
}
if($path=='customOrderDetail')
{
include("pages/order/customOrderDetail.php");
}
if($path=='page')
{
include("pages/page/page.php");
}
if($path=='page_list')
{
include("pages/page/page_list.php");
}
if($path=='testimonials')
{
include("pages/page/testimonials.php");
}
if($path=='icon')
{
include("pages/icon/icon.php");
}
if($path=='contactEnquiry')
{
include("pages/contact/contactEnquiry.php");
}
}
else
{
include("dashboard.php");
}
?>