*/ /** * Klasa stDotpayFrontendComponents * * @package stDotpayPlugin * @subpackage actions */ class stDotpayFrontendComponents extends sfComponents { /** * Pokazywanie formularza płatności */ public function executeShowPayment() { $this->smarty = new stSmarty('stDotpayFrontend'); $api = new stDotpay(); $this->smarty->assign('params', $api->getParams($this->order)); $this->smarty->assign('url', $api->getUrl()); $this->smarty->assign('check_configuration', $api->checkPaymentConfiguration()); } }