include "../inc/classes/TechnologyInfo.php";
include "../inc/classes/Helpers.php";
if (isset($_REQUEST['mode']) && $_REQUEST['mode'] == 'sort') {
    $objTechnology = new Technology();
    $objTechnology->SortValues(substr($_REQUEST['action'], 1), substr($_REQUEST['action'], 0, 1));
    unset($objTechnology);
} elseif (isset($_REQUEST['dragsort'])) {
    // handle drag sort ajax request:
    $objTechnology = new Technology($_REQUEST['id']);
    $new_sort_order = $_REQUEST['idx'] * 10 + 5;
    if ($new_sort_order > $objTechnology->SortOrder) {
        $new_sort_order += 10;
        // increasing sort order so must add another 10
    }
    $objTechnology->SortOrder = $new_sort_order;
    $objTechnology->Update();
    echo "success";
    exit;
    // just exit since this is an ajax request
}
include "includes/pagetemplate.php";
function PageContent()
{
    ?>
    
        <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
        <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
        <script type="text/javascript">
            $(document).ready(function() {
                // fix to preserve width of cells
                var fixHelper = function(e, ui) {
<?php

include_once '../inc/classes/Technology.php';
$objTechnology = new Technology();
switch ($_REQUEST['item_id']) {
    case 'color-chk':
        $link_url = 'tech-color.php';
        break;
    case 'ibeacon-chk':
        $link_url = 'tech-ibeacon.php';
        break;
    case 'sound-chk':
        $link_url = 'tech-sound.php';
        break;
    case 'light-chk':
        $link_url = 'tech-light.php';
        break;
}
$oTechnology = $objTechnology->getAllTechnologyByCategoryIdLinkUrl($_REQUEST['category_id'], $link_url);
$objT = new Technology($oTechnology[0]->Id);
$objT->IsActive = $_REQUEST['item_value'];
$objT->Update();
echo 'success';