예제 #1
0
" 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 />
                                                        <?			
																
예제 #2
0
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>
예제 #3
0
<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>