示例#1
0
" method="post" enctype="multipart/form-data">

  <p><?php 
echo $osC_Language->get('introduction_edit_category');
?>
</p>

  <fieldset>
    <div><label><?php 
echo $osC_Language->get('field_name');
?>
</label>

<?php 
foreach ($osC_Language->getAll() as $l) {
    echo '<p>' . $osC_Language->showImage($l['code']) . '&nbsp;' . $l['name'] . '<br />' . osc_draw_input_field('categories_name[' . $l['id'] . ']', osC_Categories_Admin::get($osC_ObjectInfo->getInt('categories_id'), $l['id'], 'categories_name')) . '</p>';
}
?>

    </div>

<?php 
if (!osc_empty($osC_ObjectInfo->get('categories_image'))) {
    ?>

    <div><p><?php 
    echo osc_image('../' . DIR_WS_IMAGES . 'categories/' . $osC_ObjectInfo->get('categories_image'), $osC_ObjectInfo->get('categories_name'), HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT) . '<br />' . DIR_WS_CATALOG . 'images/categories/' . $osC_ObjectInfo->getProtected('categories_image');
    ?>
</p></div>

<?php 
示例#2
0
<?php

/*
  $Id: $

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

  Copyright (c) 2009 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_Categories_Admin::get($_GET['cID']));
$categories_array = array(array('id' => '0', 'text' => $osC_Language->get('top_category')));
foreach ($osC_CategoryTree->getArray() as $value) {
    $categories_array[] = array('id' => $value['id'], 'text' => $value['title']);
}
?>

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

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