<?php

include "../../../classes/Database.php";
include "../../../classes/Connection.php";
include_once "../../../includes/bootstrap.php";
include "../../../classes/OptionsCategory.php";
include "../../../classes/AdminAction.php";
include "../../../includes/security.funcs.inc";
include_once "../../../includes/Pagination.php";
include_once 'thumbnail/thumbnail_images.class.php';
include_once 'functions/myFunctions.php';
if (isset($_POST['submit'])) {
    $_POST = sanitize($_POST);
    $category = $_POST;
    settype($category, 'object');
    OptionsCategory::addOptionsCategory($category);
    $success = "Category Successfully Saved!";
    $updates = 'Add new options category content';
    AdminAction::addAdminAction($_SESSION['admin_name'], $updates);
}
?>
<!DOCTYPE html>  
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us">  
<head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  <link rel="stylesheet" type="text/css" media="screen" href="<?php 
echo $ROOT_URL;
?>
_admin/_assets/css/core3.css" /> 
  <link rel="stylesheet" type="text/css" media="screen" href="<?php 
<?php

include "../../../classes/Database.php";
include "../../../classes/Connection.php";
include_once "../../../includes/bootstrap.php";
include "../../../classes/Category.php";
include "../../../classes/Products.php";
include "../../../classes/ProductsOption.php";
include "../../../classes/Options.php";
include "../../../classes/OptionsCategory.php";
include "../../../classes/AdminAction.php";
include "../../../includes/security.funcs.inc";
include_once "../../../includes/Pagination.php";
include_once 'thumbnail/thumbnail_images.class.php';
include_once 'functions/myFunctions.php';
$category_options = OptionsCategory::displayAllOptionsCategory();
$product_id = $_REQUEST['Id'];
if (isset($_POST['submit'])) {
    include "upload_class.php";
    //classes is the map where the class file is stored (one above the root)
    $max_size = 1024 * 250;
    // the max. size for uploading
    $my_upload = new file_upload();
    if ($_FILES['image']['name'] != '') {
        $my_upload->upload_dir = "../../../products_image/";
        // "files" is the folder for the uploaded files (you have to create this folder)
        $my_upload->extensions = array(".jpeg", ".gif", ".bmp", ".jpg", ".png");
        // specify the allowed extensions here
        // $my_upload->extensions = "de"; // use this to switch the messages into an other language (translate first!!!)
        $my_upload->max_length_filename = 50;
        // change this value to fit your field length in your database (standard 100)
include "../../../classes/Database.php";
include "../../../classes/Connection.php";
include_once "../../../includes/bootstrap.php";
include "../../../classes/Options.php";
include "../../../classes/OptionsCategory.php";
include "../../../classes/AdminAction.php";
include "../../../includes/security.funcs.inc";
include_once "../../../includes/Pagination.php";
//delete photo
if (isset($_REQUEST['delete'])) {
    Options::deleteOptions($_REQUEST['delete']);
    $updates = 'Delete options content';
    AdminAction::addAdminAction($_SESSION['admin_name'], $updates);
}
$category = OptionsCategory::findOptionsCategory($_REQUEST['category_id']);
?>
<!DOCTYPE html>  
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us">  
<head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  <link rel="stylesheet" type="text/css" media="screen" href="<?php 
echo $ROOT_URL;
?>
_admin/_assets/css/core3.css" /> 
  <link rel="stylesheet" type="text/css" media="screen" href="<?php 
echo $ROOT_URL;
?>
_admin/_assets/css/modules.css" /> 
</head>
        </li>
         <li>
          <label for="position">Position</label>
          <input type="text" id="position" name="position">
        </li>
      </ul>
      
        
    </fieldset>
    
    <fieldset style="width:1065px;">
      <legend>Options Panel</legend>
      <ul>
        
        <? 
			$optionsCat = OptionsCategory::displayAllOptionsCategory();
			foreach($optionsCat as $optionsCats) { 
				$option = Options::displayAllOptions($optionsCats->fldOptionsCategoryID);
		?>
        <li>
          <label for="title"><strong><?php 
echo $optionsCats->fldOptionsCategoryName;
?>
</strong> : &nbsp;&nbsp;</label>
          <?
		  	foreach($option as $options) { 
		  ?>
          		<input type="checkbox" name="options[]" value="<?php 
echo $optionsCats->fldOptionsCategoryID . ';' . $options->fldOptionsID;
?>
" style="width:10px; display:inline;"> <?php 
        </tr>
      </thead>
    
      <tbody id="alter_rows">
       <?php 
$count_record = OptionsCategory::countOptionsCategory();
if (!isset($_REQUEST['page'])) {
    $page = 1;
} else {
    $page = $_GET[page];
}
$pagination = new Pagination();
//for display
$pg = $pagination->page_pagination(20, $count_record, $page, 20);
//$result_prod = mysql_query($query_Recordset2.$pg[1]);
$category = OptionsCategory::findAll($pg[1]);
?>
		  	<? if($count_record == 0) { ?>
            	  <tr>
                  	<td colspan="3" align="center" style="font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#F00; font-weight:bold">No Record Found</td>
                  </tr>
            <? } else { 
					foreach($category as $categories) { 
					
			?>		
                <tr>
                  <td> <?php 
echo $categories->fldOptionsCategoryID;
?>
 </td>
                  
" alt="" border=0 align="left"  width="75">
														
															
														<table border="0">
                                                        <tr><td align="left">
														<B><font face="Arial, Helvetica, sans-serif" size="2"><?php 
echo $carts->fldTempCartProductName;
?>
</font></B><br />                              
                                                         <? 
															if($carts->fldTempCartOptions != "") {
																$option = explode(',',$carts->fldTempCartOptions);
																foreach($option as $options) {
																	$pOptions = ProductsOption::findProductsOptionCart($options);
																	$nOptions = Options::findOptions($pOptions->fldProductsOptionMainId);
																	$cOptions = OptionsCategory::findOptionsCategory($pOptions->fldProductsOptionCategoryId);
																	$optionAmount = $optionAmount + $pOptions->fldProductsOptionAmount;
																
													    ?>
                                                        	<strong><?php 
echo $cOptions->fldOptionsCategoryName;
?>
 : </strong> <?php 
echo $nOptions->fldOptionsName;
?>
  - (+) $ <?php 
echo number_format($pOptions->fldProductsOptionAmount, 2);
?>
<br />
                                                        <?			
																
<body>
<? if(isset($success)) { ?>
	<div class="alert"> <?php 
echo $success;
?>
 </div>
<? } ?>
<div id="store_overview">
    	<ul class="btn">
  			<li><a href="<?php 
echo $ROOT_URL;
?>
_admin/modules_category_options/view/">Back</a></li>
    	</ul>
</div>        
<? $categoryContent = OptionsCategory::findOptionsCategory($_REQUEST['id']);?>
  <form id="store_page" action="" method="post" enctype="multipart/form-data">
    <h3>ACM Options Category</h3>
   
    <fieldset style="width:1065px;">
      <legend>Options Category Panel</legend>
      <ul>
        
        <li>
          <label for="title">Category Name</label>
          <input type="text" id="title" name="name" value="<?php 
echo stripslashes($categoryContent->fldOptionsCategoryName);
?>
">
        </li>