X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Felements%2Fcheckboxes-table-name.html;h=1638b9ca2cb67659aefbd9b170b68bc754787680;hp=0a92e4548292c24212742c27391b4ff7e9b79260;hb=eb4ff7f73c5d4bdf74a3472448b5a195598ff4cd;hpb=32b5d3a31f112a381f0a15ac5e3a2204242f3405 diff --git a/httemplate/elements/checkboxes-table-name.html b/httemplate/elements/checkboxes-table-name.html index 0a92e4548..1638b9ca2 100644 --- a/httemplate/elements/checkboxes-table-name.html +++ b/httemplate/elements/checkboxes-table-name.html @@ -1,56 +1,54 @@ +<%doc> + +Example: + + include( '/elements/checkboxes-table-name.html', + + ### + # required + ### + 'link_table' => 'table_name', + + 'name_col' => 'name_column', + #or + 'name_callback' => sub { }, + + 'names_list' => [ 'value', + 'other value', + [ 'complex value' => { 'desc' => "Add'l description", + 'note' => ' *', + } + ], + ], + + ### + # recommended (required?) + ### + 'source_obj' => $obj, + #or? + #'source_table' => 'table_name', + #'sourcenum' => '4', #current value of primary key in source_table + # # (none is okay, just pass it if you have it) + + ### + # optional + ### + 'num_col' => 'col_name' #if column name is different in link_table than + #source_table + 'link_static' => { 'column' => 'value' }, + + ) + + + + + +% foreach my $item ( @{ $opt{'names_list'} } ) { % -% -% ## -% # required -% ## -% # 'link_table' => 'table_name', -% # -% # 'name_col' => 'name_column', -% # #or -% # 'name_callback' => sub { }, -% # -% # 'names_list' => [ 'value', 'other value' ], -% # -% ## -% # recommended (required?) -% ## -% # 'source_obj' => $obj, -% # #or? -% # #'source_table' => 'table_name', -% # #'sourcenum' => '4', #current value of primary key in source_table -% # # # (none is okay, just pass it if you have it) -% ## -% # optional -% ## -% # 'num_col' => 'col_name' #if column name is different in link_table than -% # #source_table -% # 'link_static' => { 'column' => 'value' }, -% -% my( %opt ) = @_; -% -% my( $source_pkey, $sourcenum, $source_obj ); -% if ( $opt{'source_obj'} ) { -% -% $source_obj = $opt{'source_obj'}; -% #$source_table = $source_obj->dbdef_table->table; -% $source_pkey = $source_obj->dbdef_table->primary_key; -% $sourcenum = $source_obj->$source_pkey(); -% -% } else { -% -% #$source_obj? -% $source_pkey = $opt{'source_table'} -% ? dbdef->table($opt{'source_table'})->primary_key -% : ''; -% $sourcenum = $opt{'sourcenum'}; -% } -% -% $source_pkey = $opt{'num_col'} || $source_pkey; -% -% my $link_static = $opt{'link_static'} || {}; -% -% -% foreach my $name ( @{ $opt{'names_list'} } ) { +% my $name = ref($item) ? $item->[0] : $item; +% ( my $display = $name ) =~ s/ / /g; +% $display .= $item->[1]{note} if ref($item) && $item->[1]{note}; +% my $desc = ref($item) && $item->[1]{desc} ? $item->[1]{desc} : ''; % % my $checked; % if ( $cgi->param('error') ) { @@ -71,15 +69,45 @@ % : '' % % } -% -% + + + + + +% } - " <% $checked %> VALUE="ON"> +
+ " <% $checked %> VALUE="ON"> + <% $display %> +% if ( $desc ) { +
<% $desc %> +% } +
- <% $name %> +<%init> -
-% } +my( %opt ) = @_; + +my( $source_pkey, $sourcenum, $source_obj ); +if ( $opt{'source_obj'} ) { + + $source_obj = $opt{'source_obj'}; + #$source_table = $source_obj->dbdef_table->table; + $source_pkey = $source_obj->dbdef_table->primary_key; + $sourcenum = $source_obj->$source_pkey(); + +} else { + + #$source_obj? + $source_pkey = $opt{'source_table'} + ? dbdef->table($opt{'source_table'})->primary_key + : ''; + $sourcenum = $opt{'sourcenum'}; +} + +$source_pkey = $opt{'num_col'} || $source_pkey; +my $link_static = $opt{'link_static'} || {}; +