0

我正在尝试为 Prestashop 1.4 构建一个模块,我需要检索并显示完整的类别和子类别列表,但我发现了一些困难:

这是我的模块逻辑:

class HyperFeed extends Module {

 function __construct(){ blablabla } 

 public function install(){ blablabla } 

public function _getCategories(){

    $version_mask = explode('.', _PS_VERSION_, 3);
    if ($version_mask[1]<5){$id_category=1;}else{$id_category=0;}       

    function getCategories($id_category){

        $sql = 'SELECT '._DB_PREFIX_.'category.id_category,name,'._DB_PREFIX_.'category.level_depth,'._DB_PREFIX_.'category.id_parent FROM '._DB_PREFIX_.'category
        INNER JOIN '._DB_PREFIX_.'category_lang ON '._DB_PREFIX_.'category_lang.id_category = '._DB_PREFIX_.'category.id_category
         WHERE id_parent = '.$id_category.' AND id_lang = 3';

        $contentTable = '<table>';
        if ($results = Db::getInstance()->ExecuteS($sql)){
            foreach ($results as $row){


                $contentTable .= '   
                <tr>
                    <td width="3%"><input type="checkbox" name="footerBox[]" class="cmsBox" id="1_1" value="1_1"></td>
                    <td width="3%">'.$row['id_category'].'</td>
                    <td width="94%"><img style="vertical-align:middle;" src="../img/admin/lv1.gif" alt=""> &nbsp;
                    <label for="1_1" class="t"><b>'.$row['name'].'</b></label></td>
                </tr>';


                getCategories($row['id_category']);                      

            }
        }
        $contentTable .=  '</table>';


    }

    getCategories(1);
    $this->_html .= $contentTable;

} 

 public function getContent(){

$this->_html .='<form>blablabla';

$this->_getCategories();

$this->_html .='blablabla</form>';

}
    return $this->_html;
    }

我得到的只是一个“未定义的变量:contentTable”,我做错了什么?

提前致谢

4

2 回答 2

1

$contentTable的定义在 内getCategories(),而不是_getCategories()

因此,在以下几行中,它被认为是未定义的。

getCategories(1);
$this->_html .= $contentTable;

您可以尝试执行以下操作:

寻找:

$contentTable .=  '</table>';

用。。。来代替:

$contentTable .=  '</table>';
return $contentTable;

寻找:

getCategories(1);
$this->_html .= $contentTable;

用。。。来代替:

$contentTable = getCategories(1);
$this->_html .= $contentTable;

这应该通过从 getCategories() 函数_getCategories()返回和分配变量来正确定义函数内的变量。$contentTable

于 2013-03-06T16:09:26.183 回答
0

我发现了别的东西

public static function getCategoryTree($id_product,$id_lang){
                $root = Category::getRootCategory();
                $selected_cat = Product::getProductCategoriesFull($id_product, $id_lang);
                $tab_root = array('id_category' => $root->id, 'name' => $root->name);
                $helper = new Helper();
                $category_tree = $helper->renderCategoryTree($tab_root, $selected_cat, 'categoryBox', false, true, array(), false, true);
                return $category_tree;
            }

$this->getCategoryTree(null,$id_lang); 并且您将类别树作为 prestashop 后台关联选项卡。将 null 替换为 $id_product 并检查产品类别。希望我会为我糟糕的英语感到抱歉,我是法国人

于 2014-06-18T08:20:26.813 回答