Skip to content

Commit 51f0e41

Browse files
author
Adam Prime
committed
Change _load_config to use the first instance of a config file that is found in
the include path. This behavior is more like how TT works, which allows you to more easily do customized forms that override default behavior by manipulating the include path.
1 parent 8238763 commit 51f0e41

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

lib/HTML/FormFu/ObjectUtil.pm

+2-1
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ sub _load_config {
160160
my ( $filename, $filedata ) = %{ $config->[0] };
161161

162162
_load_file( $self, $data_visitor, $filedata );
163+
last;
163164
}
164165
croak "config file '$file' not found" if !$loaded;
165166
}
@@ -409,4 +410,4 @@ sub _object_equals {
409410
undef;
410411
}
411412

412-
1;
413+
1;

t/config_file_path.t

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use strict;
22
use warnings;
33

4-
use Test::More tests => 3;
4+
use Test::More tests => 4;
55

66
use File::Temp qw(tempdir);
77
use HTML::FormFu;
@@ -35,3 +35,8 @@ $form2->config_file_path([ @dirs, 't/config_file_path' ]);
3535
$form2->load_config_file('form.yml');
3636
ok( $form2->get_field('found-me') );
3737

38+
my $form3 = HTML::FormFu->new;
39+
$form3->config_file_path([ 't/config_file_path2', @dirs, 't/config_file_path' ]);
40+
$form3->load_config_file('form.yml');
41+
ok( $form3->get_field('new-found-me') );
42+

t/config_file_path2/form.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
elements:
3+
- name: new-found-me

0 commit comments

Comments
 (0)