Mercurial > pub > Impl
comparison Lib/IMPL/Web/View/Metadata/FormProvider.pm @ 364:82b6c967bcf1
sync, working on metadata
author | cin |
---|---|
date | Fri, 29 Nov 2013 16:33:07 +0400 |
parents | |
children | 7c621bb95e53 |
comparison
equal
deleted
inserted
replaced
363:d67e45705be5 | 364:82b6c967bcf1 |
---|---|
1 package IMPL::Web::View::Metadata::FormProvider; | |
2 use strict; | |
3 | |
4 use IMPL::declare { | |
5 base => [ | |
6 'IMPL::Object' => undef | |
7 ] | |
8 }; | |
9 | |
10 sub GetFormMetadata { | |
11 my ($this,$model, $form) = @_; | |
12 } | |
13 | |
14 sub PopulateChildren { | |
15 my ($this,$meta) = @_; | |
16 | |
17 map { | |
18 $_->name, | |
19 $_ | |
20 } $meta->schema->content->childNodes; | |
21 } | |
22 | |
23 sub GetChild { | |
24 | |
25 } | |
26 | |
27 1; |