-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from rolandoisidoro/fix-radio-checkbox-labels
Fix Radio and MultiCheckbox labels
- Loading branch information
Showing
25 changed files
with
2,324 additions
and
2,335 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
<?php | ||
namespace TwbsHelper\Form\Element; | ||
|
||
use Zend\Form\Element as ZendElement; | ||
|
||
/** | ||
* StaticElement | ||
* | ||
* @uses ZendElement | ||
*/ | ||
class StaticElement extends ZendElement | ||
{ | ||
/** | ||
* Seed attributes | ||
* | ||
* @var array | ||
* @access protected | ||
*/ | ||
protected $attributes = [ | ||
'type' => 'static' | ||
]; | ||
} | ||
|
||
<?php | ||
namespace TwbsHelper\Form\Element; | ||
|
||
use Zend\Form\Element as ZendElement; | ||
|
||
/** | ||
* StaticElement | ||
* | ||
* @uses ZendElement | ||
*/ | ||
class StaticElement extends ZendElement | ||
{ | ||
/** | ||
* Seed attributes | ||
* | ||
* @var array | ||
* @access protected | ||
*/ | ||
protected $attributes = [ | ||
'type' => 'static' | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.