Jump to content

Récupérer variable depuis un autre controller


Recommended Posts

Bonjour

Dans le searchController j'ai créée une nouvelle variable qui compte le nombre de résultat de la recherche

  Public function initContent()
.
.
.
$this->context->smarty->assign(array(
                'products' => $search['result'], // DEPRECATED (since to 1.4), not use this: conflict with block_cart module
                'search_products' => $search['result'],
                'nbProducts' => $search['total'],
                'totalParCategories'=> array_count_values($search['nb_prod_by_cat']),// Tableau nbre de résultat dans chaque catégorie
                'search_query' => $original_query,
                'homeSize' => Image::getSize(ImageType::getFormatedName('home'))));
.
.
.

dans chaque sous catégorie.recherche.thumb.jpg.601cb476b50535e7b0ac11a5810de7f8.jpg

Je récupère cette variable sans aucun souci dans mon search.tpl mais en fait je voudrai pouvoir l'utiliser dans le blockcategorie.tpl afin que pour chaque catégorie le nombre de résultat trouvé s'inscrive dans le blockcategorieright. La photo est-peut être plus parlante.

Merci pour votre aide...

Link to comment
Share on other sites

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...