ralfting

SetAttributes

Sep 12th, 2013
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php
  2.     // minha view
  3.     /* Apenas tentei colocar direto na view porque no form ele só muda o visual, mas não pega a ultima 'classse input-block-level' */
  4.     echo $this->formInput($formHda->get('dor')->setAttributes(array('class','btn btn-info input-block-level')));
  5. ?>
  6. <?php
  7. // meu form
  8. $dor = new Element\Button('dor');
  9.         $dor->setAttributes(array(
  10.             'value' => 'Dor',
  11.             'data-toggle' => 'buttons-radio'
  12.         ));
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment