修改如何在bm_categories.php中构建类别

修改如何在bm_categories.php中构建类别,php,arrays,if-statement,oscommerce,Php,Arrays,If Statement,Oscommerce,我希望有人能帮我修改分类链接的创建。我已经对它进行了修改,并且在很大程度上取得了成功,但是这最后一点让我很痛苦 bm_categories.php的内容: <?php /* $Id$ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2010 osCommerce Released unde

我希望有人能帮我修改分类链接的创建。我已经对它进行了修改,并且在很大程度上取得了成功,但是这最后一点让我很痛苦

bm_categories.php的内容:

    <?php
    /*
      $Id$

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

      Copyright (c) 2010 osCommerce

      Released under the GNU General Public License
    */

      class bm_categories {
        var $code = 'bm_categories';
        var $group = 'boxes';
        var $title;
        var $description;
        var $sort_order;
        var $enabled = false;


        function bm_categories() {
          $this->title = MODULE_BOXES_CATEGORIES_TITLE;
          $this->description = MODULE_BOXES_CATEGORIES_DESCRIPTION;

          if ( defined('MODULE_BOXES_CATEGORIES_STATUS') ) {
            $this->sort_order = MODULE_BOXES_CATEGORIES_SORT_ORDER;
            $this->enabled = (MODULE_BOXES_CATEGORIES_STATUS == 'True');

            $this->group = ((MODULE_BOXES_CATEGORIES_CONTENT_PLACEMENT == 'Left Column') ? 'boxes_column_left' : 'boxes_column_right');
          }
        }

function tep_show_category($counter) {
          global $tree, $categories_string, $cPath_array;

      $categories_string .= '<a href="';

          if ($tree[$counter]['parent'] == 0) {
            $cPath_new = 'cPath=' . $counter;
          } else {
            $cPath_new = 'cPath=' . $tree[$counter]['path'];
          }

          $categories_string .= tep_href_link(FILENAME_DEFAULT, $cPath_new) . '">';

      if ($tree[$counter]['parent'] == 0) {
        $categories_string .= '<h2>' . $tree[$counter]['name'] . '</h2></a>';
      } else {
        if (isset($last_id)) {
        $categories_string .= '<h3 class="subCategories">' . $tree[$counter]['name'] . '</h3></a>';
      } else {
        $categories_string .= $tree[$counter]['name'] . '</a>';
      }
      }

          if (SHOW_COUNTS == 'true') {
            $products_in_category = tep_count_products_in_category($counter);
            if ($products_in_category > 0) {
                  $categories_string .= '&nbsp;(' . $products_in_category . ')';
            }
          }


          if ($tree[$counter]['next_id'] != false) {
            $this->tep_show_category($tree[$counter]['next_id']);
          }
          }

        function getData() {
          global $categories_string, $tree, $languages_id, $cPath, $cPath_array;

          $categories_string = '';
          $tree = array();

          $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '0' and c.categories_id = cd.categories_id and cd.language_id='" . (int)$languages_id ."' order by sort_order, cd.categories_name");
          while ($categories = tep_db_fetch_array($categories_query))  {
            $tree[$categories['categories_id']] = array('name' => $categories['categories_name'],
                                                        'parent' => $categories['parent_id'],
                                                        'level' => 0,
                                                        'path' => $categories['categories_id'],
                                                        'next_id' => false);

            if (isset($parent_id)) {
              $tree[$parent_id]['next_id'] = $categories['categories_id'];
            }

            $parent_id = $categories['categories_id'];

            if (!isset($first_element)) {
              $first_element = $categories['categories_id'];
            }
          }

          if (tep_not_null($cPath)) {
            $new_path = '';
            reset($cPath_array);
            while (list($key, $value) = each($cPath_array)) {
              unset($parent_id);
              unset($first_id);
              $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '" . (int)$value . "' and c.categories_id = cd.categories_id and cd.language_id='" . (int)$languages_id ."' order by sort_order, cd.categories_name");
              if (tep_db_num_rows($categories_query)) {
                $new_path .= $value;
                while ($row = tep_db_fetch_array($categories_query)) {
                  $tree[$row['categories_id']] = array('name' => $row['categories_name'],
                                                       'parent' => $row['parent_id'],
                                                       'level' => $key+1,
                                                       'path' => $new_path . '_' . $row['categories_id'],
                                                       'next_id' => false);

                  if (isset($parent_id)) {
                    $tree[$parent_id]['next_id'] = $row['categories_id'];
                  }

                  $parent_id = $row['categories_id'];

                  if (!isset($first_id)) {
                    $first_id = $row['categories_id'];
                  }

                  $last_id = $row['categories_id'];
                }
                $tree[$last_id]['next_id'] = $tree[$value]['next_id'];
                $tree[$value]['next_id'] = $first_id;
                $new_path .= '_';
              } else {
                break;
              }
            }
          }

          $this->tep_show_category($first_element);

          $data = '<article class="ui-widget infoBoxContainer">' .
                  '  <h1 class="ui-widget-header infoBoxHeading">' . MODULE_BOXES_CATEGORIES_BOX_TITLE . '</h1>' .
                  '  <nav class="ui-widget-content infoBoxContents">' . $categories_string . '</nav>' . 
                  '</article>';

          return $data;
        }

        function execute() {
          global $SID, $oscTemplate;

          if ((USE_CACHE == 'true') && empty($SID)) {
            $output = tep_cache_categories_box();
          } else {
            $output = $this->getData();
          }

          $oscTemplate->addBlock($output, $this->group);
        }

        function isEnabled() {
          return $this->enabled;
        }

        function check() {
          return defined('MODULE_BOXES_CATEGORIES_STATUS');
        }

        function install() {
          tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Enable Categories Module', 'MODULE_BOXES_CATEGORIES_STATUS', 'True', 'Do you want to add the module to your shop?', '6', '1', 'tep_cfg_select_option(array(\'True\', \'False\'), ', now())");
          tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Content Placement', 'MODULE_BOXES_CATEGORIES_CONTENT_PLACEMENT', 'Left Column', 'Should the module be loaded in the left or right column?', '6', '1', 'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), ', now())");
          tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_BOXES_CATEGORIES_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', '6', '0', now())");
        }

        function remove() {
          tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')");
        }

        function keys() {
          return array('MODULE_BOXES_CATEGORIES_STATUS', 'MODULE_BOXES_CATEGORIES_CONTENT_PLACEMENT', 'MODULE_BOXES_CATEGORIES_SORT_ORDER');
        }
      }
    ?>

我只修改了从第34行开始的函数tep_show_category。我没有收到任何错误。然而,它的运行方式也不是我想要的,而且我似乎不知道如何运行。;)

我想做的是,如果一个类别是一个父类,则分配标记。如果它是一只小猫,请指定标签。除非当前选择了子类别,否则不要使用h标记

对于父母和孩子来说,他们的工作都很好。但是,我很难让它查看子类别是否为当前页面

我只是不确定应该在哪里查看subcat是否被选中。在链接创建中,它似乎使用$first_id+$last_id来构建cPath参数。i、 e indxp.phhp?cPath=1_4中的1_4。所以,我尝试使用isset的方法来查看$last_id是否为空……但没有这样的运气


提前谢谢

要检查您是否属于同一类别,无论它是顶级父级还是子级父级,您只需将全局cPath添加到函数的escope中,并将其与cPath_new进行比较即可

cPath来自应用程序_top,因此您可以作为全局访问它

if (cPath != cPath_new){ this_is_not_the_current_categorie(); } 
else { this_is_the_current_categorie(); }