Jump to content

Message d'erreur sur blockcategories !?


tungsten

Recommended Posts

Bonjour,
quelqu'un peut-il me dire ce que cela signifie ?

Notice: Undefined variable: nomCat in /var/www/html/immo-fr/modules/blockcategories/blockcategories.php on line 138

Il s'agit donc de la ligne suivante dans le fichier blockcategories.php :

$smarty->assign('nameCateg', $nomCat);



Merci pour ce décodage...

Link to comment
Share on other sites

En fait il s'agit d'un fichier extrait du thème BLACK&WHITE;voir ici

et le code correspondant est :

        }
       $blockCategTree = $this->getTree($resultParents, $resultIds);

       $isDhtml = (Configuration::get('BLOCK_CATEG_DHTML') == 1 ? true : false);

if(isset($_GET['id_category']))

        {
           if(isset($_GET['id_category']))
               $currentCategoryId=intval($_GET['id_category']);
          else 
       $currentCategoryId=Product::getDefaultCategory(intval($_GET['id_product']));

           $rootCateg = new Category ($currentCategoryId, intval($params['cookie']->id_lang));
           while($rootCateg->id_parent != 1)  {   
        $rootCateg=new Category($rootCateg->id_parent); 
}
           $blockCategTree = $rootCateg->recurseLiteCategTree(intval(Configuration::get('BLOCK_CATEG_MAX_DEPTH')));
           $isDhtml = (Configuration::get('BLOCK_CATEG_DHTML') == 1 ? true : false);

           $smarty->assign('currentCategoryId', $currentCategoryId);        
           $smarty->assign('blockCategTree', $blockCategTree);
           $smarty->assign('numCateg', $rootCateg->id_category);
           $smarty->assign('nameCateg', $nomCat);

           if (file_exists(_PS_THEME_DIR_.'modules/blockcategories/blockcategories.tpl'))
               $smarty->assign('branche_tpl_path', _PS_THEME_DIR_.'modules/blockcategories/category-tree-branch.tpl');
           else
               $smarty->assign('branche_tpl_path', _PS_MODULE_DIR_.'blockcategories/category-tree-branch.tpl');
           $smarty->assign('isDhtml', $isDhtml);



Dans la notice, il est expliqué qu'il faut justement remplacer le module blockcategories d'origine par celui du thème.

Mais le résultat donne un message d'erreur persistant...

D'avance un grand merci !

Link to comment
Share on other sites

  • 2 years later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...