Revision 522 (by ahitrov, 2015/10/29 16:49:37) |
Some system administration interface improvements
Mass section unlink for documents in browse mode
|
%# vim:syn=mason:
% index_tree( $sect->{$root}, 0, \$line, $level, $mode, $profile, $width_limit, $root );
<%once>
use Encode;
</%once>
<%args>
$root => 1
$level => 3
$mode => 1
$width_limit => undef
$avail_classes => undef
</%args>
<%init>
my $profile = $m->comp('/contenido/components/context.msn', name => 'profile');
sub index_tree
{
my ($sect, $offset, $line_ref, $count_offset, $viewmode, $profile, $width_limit, $root) = @_;
my $section_access = $user->section_accesses($user, $sect->{id});
my $spacer = '';
for(my $c=1; $c<$offset; $c++)
{
$spacer = $spacer.(($c == $offset-1) ? ' » ' : ' ');
}
if( ref $sect && $sect->id && ($sect->id != 1) && ($offset != 0) && $section_access > 0)
{
$$line_ref++;
my $href = 'sections.html?id='.$sect->id;
my $sname = decode("utf-8", $sect->name());
if ( defined $width_limit && $offset + length($sname) > $width_limit ) {
$sname =~ s/<[^>]+>//sgi;
$sname = substr($sname, 0, $width_limit - $offset);
$sname .= ' ...';
}
$sname = encode("utf-8", $sname);
my $statstyle = $sect->contenido_status_style ? ' style="' . $sect->contenido_status_style . '"' : '';
my @properties = $sect->structure();
my ($statprop) = grep { $_->{attr} eq 'status' } @properties;
my ($statcase) = grep { $_->[0] == $sect->status } @{$statprop->{cases}} if exists $statprop->{cases} && ref $statprop->{cases} eq 'ARRAY';
my $statname = $statcase->[1] if ref $statcase;
my $html_sect = '<span'.($statstyle).(!$sect->status ? ' class="hiddensect"' : '').'>'.($section_access ? '<a href="'.$href.'"'.$statstyle.'>' : '').$sname.($section_access ? '</a>' : '') . ' '.($sect->status != 1 && $statname ? ' <span style="font-size:11px;">('.$statname.')</span>' : '').'</span>';
my $style = ($offset == 1) ? ($viewmode ? ' style="font-size:16px;font-weight:bold;"':' style="font-size:14px;"') : ' style="font-size:12px;"';
$m->out( $m->scomp( '.table_row.msn',
sect => $sect,
root => $root,
style => $style,
spacer => $spacer,
viewmode => $viewmode,
html_sect => $html_sect,
line_ref => $line_ref,
section_access => $section_access,
)
);
}
my $childs = $sect->{children} || [];
if( ref($childs) && @$childs && $offset < $count_offset )
{
$offset++;
foreach my $child (@$childs)
{
next if (! $request->{cCLASSES}->{$child->class()});
index_tree( $child, $offset, $line_ref, $count_offset, $viewmode, $profile, $width_limit, $root );
}
$offset--;
}
}
$request->{cCLASSES} = {};
my @avail_classes;
if ( ref $avail_classes eq 'ARRAY' && @$avail_classes ) {
map { $request->{cCLASSES}->{$_} = 1 } @$avail_classes;
@avail_classes = @$avail_classes;
} elsif (ref($request->{tab}->{sections})) {
map { $request->{cCLASSES}->{$_} = 1 } (@{ $request->{tab}->{sections} });
return undef if (scalar(keys(%{ $request->{cCLASSES} })) == 0);
@avail_classes = keys( %{ $request->{cCLASSES} } );
}
push @avail_classes, 'Contenido::Section' unless exists $request->{cCLASSES}{'Contenido::Section'};
my $sect = $keeper->get_section_tree(root=>$root, class => \@avail_classes, light => undef);
return undef unless ref $sect && exists $sect->{$root};
$user->get_accesses();
my $line = 0;
</%init>
<%def .table_row.msn>
<%args>
$sect => undef
$root => undef
$style => ''
$spacer => ''
$viewmode => undef
$html_sect => ''
$line_ref => undef
$section_access => undef
</%args>
<%init>
my ($fhref, $new_doc_class);
if ( $viewmode ) {
$fhref = '/contenido/?set_context=filter-'.$sect->id;
$new_doc_class = $sect->default_document_class;
}
</%init>
<tr>
<td align="right"> <% $$line_ref %> <a href="section.html?id=<% $sect->id %>&move=up&ret=<% $root %>"><img src="/contenido/i/ico-up-9x10.gif" border=0 alt="Переместить секцию на шаг вверх"></a> <a href="section.html?id=<% $sect->id %>&move=down&ret=<% $root %>"><img src="/contenido/i/ico-down-9x10.gif" border=0 alt="Переместить секцию на шаг вниз"></a></td>
<td><table cellpadding="0" cellspacing="0" border="0">
<tr valign="top">
<td width="10"> </td>
<td><% $spacer %></td>
<td nowrap <% $style %>><% $html_sect %></td>
</tr>
</table>
</td>
% if ( $viewmode ) {
<td align="center" nowrap>
<a href="section.html?id=<% $sect->id %>" title="Редактировать параметры секции"><img src="/contenido/i/actions/edit.gif" width="15" height="17" align="absmiddle" border="0"></a> <a
href="$fhref">фильтр</a>\
% if ( $section_access == 2 and $new_doc_class ) {
<a href="document.html?sect_id=<% $sect->id %>&class=<% $new_doc_class %>">доб.докум</a>\
% }
</td>
% } else {
<td align="center" nowrap><a href="section.html?id=<% $sect->id %>" title="Редактировать параметры секции"><img src="/contenido/i/actions/edit.gif" width="15" height="17" align="absmiddle" border="0"></a></td>
% }
</tr>
</%def>