[freeside-commits] freeside/httemplate/view svc_Common.html, NONE,
1.1
Ivan,,,
ivan at wavetail.420.am
Tue Jan 2 12:26:01 PST 2007
Update of /home/cvs/cvsroot/freeside/httemplate/view
In directory wavetail:/tmp/cvs-serv1255
Added Files:
svc_Common.html
Log Message:
missing from svc patch, oops!
--- NEW FILE: svc_Common.html ---
<%init>
# false laziness w/edit/svc_Common.html
$cgi->param('svcdb') =~ /^(svc_\w+)$/ or die "unparsable svcdb";
my $table = $1;
require "FS/$table.pm";
my %opt;
if ( UNIVERSAL::can("FS::$table", 'table_info') ) {
$opt{'name'} = "FS::$table"->table_info->{'name'};
my $fields = "FS::$table"->table_info->{'fields'};
my %labels = map { $_ => ( ref($fields->{$_})
? $fields->{$_}{'label'}
: $fields->{$_}
);
}
keys %$fields;
$opt{'labels'} = \%labels;
}
</%init>
<% include('elements/svc_Common.html',
'table' => $table,
'edit_url' => $p."edit/svc_Common.html?svcdb=$table;svcnum=",
%opt,
)
%>
More information about the freeside-commits
mailing list