コード例 #1
0
require '../inc/classes/Helpers.php';
// page vars
$page_title = "";
$id = $_REQUEST['id'];
// id required
if ($id == "") {
    header("Location:mainpage.php");
    exit;
}
// if form was submitted
if ($_POST['commit'] == "Cancel") {
    header("Location:technologyinfo_list.php?cat=" . $_REQUEST['cat'] . "&tech=" . $_REQUEST['tech']);
    exit;
}
if ($_POST['commit'] == "Delete Technology Info") {
    $objTechnologyInfo = new TechnologyInfo($id);
    $objTechnologyInfo->Delete($id);
    header("Location:technologyinfo_list.php?cat=" . $_REQUEST['cat'] . "&tech=" . $_REQUEST['tech']);
    exit;
}
$objTechnologyInfo = new TechnologyInfo($id);
include "includes/pagetemplate.php";
function PageContent()
{
    global $objTechnologyInfo;
    global $id;
    $objTechnology = new Technology($_REQUEST['tech']);
    ?>

            <div class="layout laymidwidth">
コード例 #2
0
function PageContent()
{
    global $objTechnology;
    ?>
    
        <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) {
                    ui.children().each(function() {
                        $(this).width($(this).width());
                    });
                    return ui;
                };
                var saveIndex = function(e, ui) {
                    //alert("New position: " + ui.item.index());
                    //alert("Image Id: " + ui.item.attr("id"));
                    id = ui.item.attr("id").replace("img_", "");
                    $.ajax({
                        url: 'technologyinfo_list.php',
                        data: {
                            dragsort: 1,
                            idx: ui.item.index(),
                            id: id
                        },
                        type: 'POST',
                        dataType: 'html',
                        success: function (data) {
                            //alert("done");
                        },
                        error: function (xhr, status) {
                            alert('Sorry, there was a problem!');
                        }
                    });
                }; // end saveIndex
    
                $("#list_table tbody").sortable({
                    helper: fixHelper,
                    stop: saveIndex
                }).disableSelection();
    
            }); // end document.ready
        </script>
        <style>
            .icon-resize-vertical:hover {
                cursor:grab;
            }
        </style>        
    
            <div class="layout center-flex">

                <?php 
    $aLabels = array();
    $aLinks = array();
    $aLabels[0] = 'Home';
    $aLinks[0] = 'mainpage.php';
    $aLabels[1] = 'Category List';
    $aLinks[1] = 'category_list.php';
    $aLabels[2] = 'Technology';
    $aLinks[2] = 'technology_list.php?cat=' . $_REQUEST['cat'];
    $aLabels[3] = $objTechnology->TechnologyName;
    $aLinks[3] = '';
    echo Helpers::CreateBreadCrumbs($aLabels, $aLinks);
    ?>

                <div class="bigbotspace flex-container space-between">
                    <p class="larger auto heading"><?php 
    echo $objTechnology->TechnologyName;
    ?>
</p>
                    <a href="technologyinfo_admin.php?cat=<?php 
    echo $_REQUEST['cat'];
    ?>
&tech=<?php 
    echo $_REQUEST['tech'];
    ?>
" class="button_link"><button class="">Add New Technology Info Item</button></a>
                </div>
            </div>
    
            <div class="layout">
    
                <table class="tablestyle" id="list_table">
                    <thead>
                        <tr>
                            <th>ID</th>
                            <th>Name</th>
                            <th>Template</th>
                            <th>Text</th>
                            <th>Images</th>
                            <th>Ordering</th>
                            <th class="mid">Actions</th>
                        </tr>
                    </thead>
                    <tbody>
                        <?php 
    $objTechnologyInfo = new TechnologyInfo();
    $oTechnologyInfo = $objTechnologyInfo->getAllTechnologyInfoByTechnologyId($_REQUEST['tech']);
    foreach ($oTechnologyInfo as $techinfo) {
        echo '<tr id="img_' . $techinfo->Id . '">' . PHP_EOL;
        echo '<td>' . $techinfo->Id . '</td>' . PHP_EOL;
        echo '<td>' . $techinfo->TechnologyInfoName . '</td>' . PHP_EOL;
        echo '<td>' . $techinfo->TechnologyInfoTemplate . '</td>' . PHP_EOL;
        echo '<td>';
        if ($techinfo->TechnologyInfoDescription != '') {
            echo substr($techinfo->TechnologyInfoDescription, 0, 200);
        }
        echo '</td>' . PHP_EOL;
        echo '<td style="text-align: center;">';
        $objTechnologyInfoImage = new TechnologyInfoImage();
        //if ($techinfo->TechnologyInfoTemplate == 'sound') {
        echo '(<a href="technologyinfoimage_list.php?cat=' . $_REQUEST['cat'] . '&tech=' . $_REQUEST['tech'] . '&techinfo=' . $techinfo->Id . '">' . $objTechnologyInfoImage->getCountTechnologyInfoImageByTechnologyInfoId($techinfo->Id) . '</a>)';
        //}
        //else {
        //	echo '&nbsp;';
        //}
        echo '</td>' . PHP_EOL;
        echo '<td class="mid"><img src="img/arrow-up-down.png" /></td>' . PHP_EOL;
        echo '<td class="mid"><a href="technologyinfo_admin.php?cat=' . $_REQUEST['cat'] . '&tech=' . $_REQUEST['tech'] . '&id=' . $techinfo->Id . '"><img src="img/edit-icon.png" /></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="technologyinfo_delete.php?cat=' . $_REQUEST['cat'] . '&tech=' . $_REQUEST['tech'] . '&id=' . $techinfo->Id . '"><img src="img/delete-icon.png" /></a></td>' . PHP_EOL;
        echo '</tr>' . PHP_EOL;
    }
    ?>
                    </tbody>
                </table>
    
            </div> <!-- layout -->
    
<?php 
}
コード例 #3
0
<?php

session_start();
if (!isset($_SESSION['sessCategory'])) {
    header('Location: index.php');
    exit;
}
include_once 'inc/classes/Technology.php';
include_once 'inc/classes/TechnologyInfo.php';
include_once 'inc/classes/TechnologyInfoImage.php';
include_once 'inc/classes/Category.php';
$objTechnology = new Technology($_REQUEST['id']);
$objTechnologyInfo = new TechnologyInfo();
$oTechnologyInfo = $objTechnologyInfo->getAllTechnologyInfoByTechnologyId($_REQUEST['id']);
$objTechnologyInfoImage = new TechnologyInfoImage();
$oTechnologyInfoImage = $objTechnologyInfoImage->GetAllTechnologyInfoImageByTechnologyInfoId($oTechnologyInfo[0]->Id);
$objCategory = new Category($_SESSION['sessCategory']);
$bgcolor = "#F40000";
// Coke red default
if ($objCategory->BackgroundColor != "") {
    $bgcolor = $objCategory->BackgroundColor;
}
$background = $bgcolor . " none repeat scroll 0% 0%";
// this is used in single-product-template.php
?>
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Coke Cooler</title>
	<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css">