Revision 3 (by ahitrov@rambler.ru, 2010/03/24 15:19:32) |
The CORE
|
<%args>
$name => undef
$check => undef
</%args>
<%init>
my $VALUES = eval ('use vars qw($VAR1); '.$check);
my $LAST = 0;
$m->out('<table border="0" cellpadding="5" cellspacing="0" width="60%">');
$m->out('<tr><th valign="top">�������������</th><th>������������� ��� ����<br><font color="gray">(��, ��� ����� ����� ������������ ����� � checkbox)</font></th></tr>');
if ((defined $VALUES) && (ref($VALUES) eq 'HASH'))
{
for my $key (sort (keys(%{ $VALUES })))
{
my $attr = $key;
my $rusname = $VALUES->{$attr}->{rusname};
next if (! defined($rusname) || !$rusname);
if ($attr =~ /^${name}_(\d+)$/)
{
$LAST = $1;
}
$m->out( $m->scomp( '.one_field.msn', attr => $attr, rusname => $rusname ) );
}
}
for (($LAST+1)..($LAST+5))
{
my $attr = $name.'_'.$_;
$m->out( $m->scomp( '.one_field.msn', attr => $attr ) );
}
$m->out('</table>');
</%init>
<%def .one_field.msn>
<!-- ���� ���� -->
<tr>
<td width="40%" valign="top" style="font-size:80%; font-family:Tahoma;">
<% $attr %>
</td>
<td width="60%" valign="top" style="font-size:80%; font-family:Tahoma;">
<input name="<% $attr %>.checkboxrusname" type="text" value="<% $rusname %>" size="40">
</td>
</tr>
<%args>
$attr => undef
$rusname => undef
</%args>
<%init>
return undef if (! defined($attr));
</%init>
</%def>
<%doc>
�������������� ���� � ���� checkbox'�. ������ ���� ��������������� ���������� �������:
attr - ���������� ����
rusname - ������� ��������
��� ��� �������� � ����...
</%doc>