X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Felements%2Fcheckboxes-table-name.html;h=957d8efdacf88b14f3d47fd5a55845c667e1977f;hp=8e9dd29d2298b39c2f462ee973e13e29a7856034;hb=949a80c148a8bbeeeec54c5a0be5d73b292423a5;hpb=c738a3c4923774b64960aa87fa58bd0751487edb diff --git a/httemplate/elements/checkboxes-table-name.html b/httemplate/elements/checkboxes-table-name.html index 8e9dd29d2..957d8efda 100644 --- a/httemplate/elements/checkboxes-table-name.html +++ b/httemplate/elements/checkboxes-table-name.html @@ -1,85 +1,91 @@ -<% - - ## - # 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'} || {}; - +<%doc> + +Example: + + include( '/elements/checkboxes-table-name.html', + + ### + # required + ### + 'link_table' => 'table_name', + + 'name_col' => 'name_column', + #or + #not yet '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' }, + + ) + + + +<% include('checkboxes.html', + 'names_list' => $opt{'names_list'}, + 'checked_callback' => $checked_callback, + 'element_name_prefix' => $opt{'link_table'}. '.', + 'disable_links' => $opt{'disable_links'}, + ) %> -<% foreach my $name ( @{ $opt{'names_list'} } ) { +<%init> - my $checked; - if ( $cgi->param('error') ) { +my( %opt ) = @_; - $checked = $cgi->param($opt{'link_table'}. ".$name" ) - ? 'CHECKED' - : ''; +my @pset = ( 'a'..'z', 'A'..'Z', '0'..'9' ); - } else { +my $prefix = $opt{prefix} + || join('', map $pset[ int(rand $#pset) ], (0..20) ); - $checked = - qsearchs( $opt{'link_table'}, { - $source_pkey => $sourcenum, - $opt{'name_col'} => $name, - %$link_static, - } ) - ? 'CHECKED' - : '' +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 { - " <%= $checked %> VALUE="ON"> + #$source_obj? + $source_pkey = $opt{'source_table'} + ? dbdef->table($opt{'source_table'})->primary_key + : ''; + $sourcenum = $opt{'sourcenum'}; +} - <%= $name %> +$source_pkey = $opt{'num_col'} || $source_pkey; -
+my $link_static = $opt{'link_static'} || {}; -<% } %> +my $checked_callback = sub { + my( $cgi, $name ) = @_; + qsearchs( $opt{'link_table'}, { + $source_pkey => $sourcenum, + $opt{'name_col'} => $name, + %$link_static, + }); +}; +