public function initContent()
 {
     // $this->productSort();
     // $nbProducts = (int)(Product::getTransitProducts((int)(self::$cookie->id_lang), isset($this->p) ? (int)($this->p) - 1 : NULL, isset($this->n) ? (int)($this->n) : NULL, true));
     //$this->pagination($nbProducts);
     $products = Product::getTransitProducts((int) $this->context->cookie->id_lang, isset($this->p) ? (int) $this->p - 1 : NULL, isset($this->n) ? (int) $this->n : NULL, false, $this->orderBy, $this->orderWay);
     $this->context->smarty->assign(array('HOOK_LEFT_COLUMN' => Hook::exec('displayLeftColumn'), 'products' => $products, 'path' => "Товар в пути"));
     parent::initContent();
     $this->setTemplate(_PS_THEME_DIR_ . 'transit.tpl');
 }