[freeside-commits] freeside/httemplate/elements
checkboxes-table.html, 1.1, 1.2 checkboxes-table-name.html,
NONE, 1.1
Ivan,,,
ivan at wavetail.420.am
Sun Jun 18 05:54:50 PDT 2006
Update of /home/cvs/cvsroot/freeside/httemplate/elements
In directory wavetail:/tmp/cvs-serv30582/httemplate/elements
Modified Files:
checkboxes-table.html
Added Files:
checkboxes-table-name.html
Log Message:
ACLs: finish group edit (agents + rights) & browse
Index: checkboxes-table.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/elements/checkboxes-table.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- checkboxes-table.html 14 May 2006 16:47:30 -0000 1.1
+++ checkboxes-table.html 18 Jun 2006 12:54:48 -0000 1.2
@@ -68,16 +68,28 @@
) {
my $targetnum = $target_obj->$target_pkey();
+
+ my $checked;
+ if ( $cgi->param('error') ) {
+
+ $checked = $cgi->param($target_pkey.$targetnum)
+ ? 'CHECKED'
+ : '';
+
+ } else {
+
+ $checked = qsearchs( $opt{'link_table'}, {
+ $source_pkey => $sourcenum,
+ $target_pkey => $targetnum,
+ } )
+ ? 'CHECKED'
+ : ''
+
+ }
+
%>
- <INPUT TYPE="checkbox" NAME="<%= $target_pkey. $targetnum %>" <%=
- qsearchs( $opt{'link_table'}, {
- $source_pkey => $sourcenum,
- $target_pkey => $targetnum,
- })
- ? 'CHECKED '
- : ''
- %> VALUE="ON">
+ <INPUT TYPE="checkbox" NAME="<%= $target_pkey. $targetnum %>" <%= $checked %> VALUE="ON">
<% if ( $opt{'target_link'} ) { %>
--- NEW FILE: checkboxes-table-name.html ---
<%
##
# 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 $checked;
if ( $cgi->param('error') ) {
$checked = $cgi->param($opt{'link_table'}. ".$name" )
? 'CHECKED'
: '';
} else {
$checked =
qsearchs( $opt{'link_table'}, {
$source_pkey => $sourcenum,
$opt{'name_col'} => $name,
%$link_static,
} )
? 'CHECKED'
: ''
}
%>
<INPUT TYPE="checkbox" NAME="<%= $opt{'link_table'}. ".$name" %>" <%= $checked %> VALUE="ON">
<%= $name %>
<BR>
<% } %>
More information about the freeside-commits
mailing list