Advertisement
Guest User

Untitled

a guest
Mar 31st, 2015
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <?php
  2. $form = new Form();
  3. $form->addSubmit('submit', $this->basePath . '/img/buttons/cz/button_in_cart_big_new.gif')
  4. ->setAttribute("title", "vložení do košíku")
  5. ->setAttribute("alt", "vložení do košíku");
  6.  
  7. $vybratBtn = $form['submit']->getControlPrototype();
  8. $vybratBtn->setName("button");
  9. $vybratBtn->type = 'submit';
  10. $vybratBtn->create('i class="fa fa-shopping-cart"');
  11. $vybratBtn->add(' Koupit');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement