for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Checkbox
* Auxilia nas <input type="checkbox">
* @author WebCorpore
*/
namespace Win\Html\Form;
class Checkbox {
* Retorna checked="true" se os valores são iguais
* @param mixed $value1
* @param mixed $value2
public static function active($value1, $value2 = true) {
if ($value1 == $value2) {
return 'checked="true"';
}