Created
January 30, 2012 18:25
-
-
Save cgarvis/1705802 to your computer and use it in GitHub Desktop.
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
<?php | |
namespace app\extensions\helper; | |
class Form extends \lithium\template\helper\Form { | |
public function field($name, array $options = array()) { | |
$defaults = array( | |
'wrap' => 'control-group' | |
); | |
return parent::field($name, $options + $defaults); | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment