Jump to content

Własny moduł - zawartość szablonów się nie wyświetla :(


Recommended Posts

Witajcie.

Piszę własny moduł mający pokazać się w panelu admina. W kontrolerze mam kilka akcji, np indexAction, szablon niby jest renderowany, ale w panelu nie pokazuje mi jego zawartości, mam tylko menu po lewej. Co robię źle?

 

public function indexAction(Request $request)
	{
		/** @var EntityManagerInterface $entityManager */
		$entityManager = $this->container->get('doctrine.orm.entity_manager');

		$repository = $entityManager->getRepository(Wholesales::class);

		$wholesales = array();
		foreach ($repository->findAll() as $wholesale)
			$wholesales[] = $wholesale;
                $context = Context::getContext();
                $context->smarty->assign(array('wholesales' => $wholesales));
                return $context->smarty->fetch(_PS_MODULE_DIR_. 'sstorewholesale/views/templates/admin/index.html.tpl');
		//return $this->render(_PS_MODULE_DIR_. 'sstorewholesale/views/templates/admin/index.html.twig', array('wholesales' => $wholesales));
	}

 

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