moving to tabsets and ordered everything
This commit is contained in:
parent
631f6ad267
commit
db785fbc02
5 changed files with 48 additions and 38 deletions
14
lib/WebGUI/FormBuilder/Role/HasObjects.pm
Normal file
14
lib/WebGUI/FormBuilder/Role/HasObjects.pm
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
package WebGUI::FormBuilder::Role::HasObjects;
|
||||
|
||||
use Moose::Role;
|
||||
|
||||
has 'objects' => (
|
||||
is => 'rw',
|
||||
isa => 'ArrayRef[Object]',
|
||||
default => sub { [] },
|
||||
);
|
||||
|
||||
# Objects combines "fields", "fieldsets", and "tabsets"
|
||||
|
||||
1;
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue