Changeset 36470

Show
Ignore:
Timestamp:
01/17/10 19:06:10 (3 years ago)
Author:
vkgtaro
Message:

dependencies の日本語ドキュメント追加

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/FormValidator-LazyWay/trunk/lib/FormValidator/LazyWay/JA.pod

    r35683 r36470  
    435435    } 
    436436 
     437=head2 dependencies 
     438 
     439特定の項目に依存した項目を作りたい場合に使用します。 
     440以下の設定例は、配送先オプションにチェックを入れた場合に配送先住所と配送先氏名を必須にします。 
     441 
     442 my $profile  
     443    = { 
     444        required => [qw/name address/], 
     445        dependencies => { 
     446           delivery => { 
     447               1 => [qw/address_for_delivery name_for_delivery/] 
     448           } 
     449        } 
     450    } 
     451 
    437452=head1 結果 
    438453