Skip to content

Instantly share code, notes, and snippets.

@estefanionsantos
Last active September 8, 2021 00:45
Show Gist options
  • Save estefanionsantos/22a2f4988df7cdc4ab1013cfa74a27bd to your computer and use it in GitHub Desktop.
Save estefanionsantos/22a2f4988df7cdc4ab1013cfa74a27bd to your computer and use it in GitHub Desktop.
Button form rubricate
<?php
use Rubricate\Form;
$b = new Form\ButtonForm('ok');
$b->setAttribute('class', 'btn');
echo $b->getElement();
/*
<button class="btn">ok</button>
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment