first commit

This commit is contained in:
2025-03-12 17:06:23 +01:00
commit 2241f7131f
13185 changed files with 1692479 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
<?php
class stPaczkomatyFrontendComponents extends sfComponents {
public function executeBasketTerms() {
if(stPaczkomaty::isActive() == false)
return sfView::NONE;
$this->smarty = new stSmarty('stPaczkomatyFrontend');
$this->number = htmlspecialchars($this->getRequestParameter('user_data_billing[paczkomaty_machine_number]'));
}
public function executeDeliveryOnBasketList() {
if(stPaczkomaty::isActive() == false || !$this->delivery->getPaczkomatyType() || $this->delivery->getPaczkomatyType() == 'NONE')
return sfView::NONE;
$this->smarty = new stSmarty('stPaczkomatyFrontend');
$point = json_decode($this->getRequestParameter('user_data_billing[paczkomaty_machine_number]'), true);
$this->smarty->assign('point', $point);
$this->smarty->assign('id', $this->delivery->getId());
}
public function executeHelper()
{
if ($this->getModuleName() != 'stBasket')
{
return sfView::NONE;
}
$ids = [];
$smarty = new stSmarty('stPaczkomatyFrontend');
foreach (PaymentTypePeer::doSelectCached() as $payment)
{
if ($payment->getIsCod())
{
$ids[] = $payment->getId();
}
}
$smarty->assign('payments', json_encode($ids));
$smarty->assign('endpoint', stInPostApi::getInstance()->getEndpoint());
return $smarty;
}
}