示例#1
0
 function loadImageGroup()
 {
     global $toC_Json, $osC_Database;
     $data = osC_ImageGroups_Admin::getData($_REQUEST['image_groups_id']);
     $Qgroup = $osC_Database->query('select * from :table_products_images_groups where id = :id');
     $Qgroup->bindTable(':table_products_images_groups', TABLE_PRODUCTS_IMAGES_GROUPS);
     $Qgroup->bindInt(':id', $_REQUEST['image_groups_id']);
     $Qgroup->execute();
     while ($Qgroup->next()) {
         $data['title[' . $Qgroup->ValueInt('language_id') . ']'] = $Qgroup->Value('title');
         $data['code'] = $Qgroup->Value('code');
         $data['size_width'] = $Qgroup->Value('size_width');
         $data['size_height'] = $Qgroup->Value('size_height');
     }
     if ($_REQUEST['image_groups_id'] == DEFAULT_IMAGE_GROUP_ID) {
         $data['is_default'] = '1';
     }
     $response = array('success' => true, 'data' => $data);
     echo $toC_Json->encode($response);
 }
示例#2
0
<?php

/*
  $Id: $

  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright (c) 2007 osCommerce

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License v2 (1991)
  as published by the Free Software Foundation.
*/
$osC_ObjectInfo = new osC_ObjectInfo(osC_ImageGroups_Admin::getData($_GET['gID']));
?>

<h1><?php 
echo osc_link_object(osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule()), $osC_Template->getPageTitle());
?>
</h1>

<?php 
if ($osC_MessageStack->size($osC_Template->getModule()) > 0) {
    echo $osC_MessageStack->get($osC_Template->getModule());
}
?>

<div class="infoBoxHeading"><?php 
echo osc_icon('trash.png') . ' ' . $osC_ObjectInfo->get('title');
?>