Skip to content

Instantly share code, notes, and snippets.

@jblotus
Created August 20, 2011 19:55
Show Gist options
  • Save jblotus/1159576 to your computer and use it in GitHub Desktop.
Save jblotus/1159576 to your computer and use it in GitHub Desktop.
lithium issue with custom form helper not working
<?php
namespace app\extensions\helper;
class Form extends \lithium\template\helper\Form {
// Add or override Form helper methods
public function field() {
var_dump('bar');
die();
}
}
?>
//in my view:
<?=$this->form->create($object); ?>
<?=$this->form->field('title');?>
<?=$this->form->end(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment