23 lines
611 B
PHP
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();
|
||
|
|
}
|
||
|
|
}
|