public function add_lead(Model_Lead $lead)
{
try
{
$lead->save();
}
catch(Orm\ValidationFailed $e)
{
// returns the individual ValidationError objects
$errors = $e->get_fieldset()->validation()->error();
}
}
It looks like you're new here. If you want to get involved, click one of these buttons!