class AppController extends Controller { public $helpers = array( 'Form' => array('className' => 'AppForm') ); }
# app/View/Helper/AppFormHelper.php App::uses('FormHelper', 'View/Helper'); final class AppFormHelper extends FormHelper { public function input($fieldName, $options = array()) { # do what you want here return parent::input($fieldName, $options); } } -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to cake-php+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php