Files
prestashop/classes/controller/ProductPresentingFrontController.php
2026-04-09 18:31:51 +02:00

23 lines
611 B
PHP

<?php
/**
* For the full copyright and license information, please view the
* docs/licenses/LICENSE.txt file that was distributed with this source code.
*/
abstract class ProductPresentingFrontControllerCore extends FrontController
{
private function getFactory()
{
return new ProductPresenterFactory($this->context, new TaxConfiguration());
}
protected function getProductPresentationSettings()
{
return $this->getFactory()->getPresentationSettings();
}
protected function getProductPresenter()
{
return $this->getFactory()->getPresenter();
}
}