X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FTemplate%2FPlugin%2FL.pm;h=9aead011327105f4bae62a4e11f63503082fcd9a;hb=04854ac27e2b18b2d5a15089c69ed5b79c495a2b;hp=23a293fbfe77cf6c9422afa479eacbb1236b1139;hpb=e5205a2352978ce3c665ecb5d7a017f308b7d139;p=kivitendo-erp.git diff --git a/SL/Template/Plugin/L.pm b/SL/Template/Plugin/L.pm index 23a293fbf..9aead0113 100644 --- a/SL/Template/Plugin/L.pm +++ b/SL/Template/Plugin/L.pm @@ -3,6 +3,7 @@ package SL::Template::Plugin::L; use base qw( Template::Plugin ); use Template::Plugin; use List::MoreUtils qw(apply); +use List::Util qw(max); use strict; @@ -20,6 +21,12 @@ sub _H { return $::locale->quote_special_chars('HTML', $string); } +sub _J { + my $string = "" . shift; + $string =~ s/\"/\\\"/g; + return $string; +} + sub _hashify { return (@_ && (ref($_[0]) eq 'HASH')) ? %{ $_[0] } : @_; } @@ -84,10 +91,8 @@ sub select_tag { } sub textarea_tag { - my $self = shift; - my $name = shift; - my $content = shift; - my %attributes = _hashify(@_); + my ($self, $name, $content, @slurp) = @_; + my %attributes = _hashify(@slurp); $attributes{id} ||= $self->name_to_id($name); $content = $content ? _H($content) : ''; @@ -139,7 +144,7 @@ sub radio_button_tag { sub input_tag { my ($self, $name, $value, @slurp) = @_; - my %attributes = _hashify(@slurp); + my %attributes = _hashify(@slurp); $attributes{id} ||= $self->name_to_id($name); $attributes{type} ||= 'text'; @@ -176,16 +181,21 @@ sub link { } sub submit_tag { - my $self = shift; - my $name = shift; - my $value = shift; - my %attributes = _hashify(@_); + my ($self, $name, $value, @slurp) = @_; + my %attributes = _hashify(@slurp); $attributes{onclick} = "if (confirm('" . delete($attributes{confirm}) . "')) return true; else return false;" if $attributes{confirm}; return $self->input_tag($name, $value, %attributes, type => 'submit', class => 'submit'); } +sub button_tag { + my ($self, $onclick, $value, @slurp) = @_; + my %attributes = _hashify(@slurp); + + return $self->input_tag(undef, $value, %attributes, type => 'button', onclick => $onclick); +} + sub options_for_select { my $self = shift; my $collection = shift; @@ -199,6 +209,8 @@ sub options_for_select { my $value_title_sub = $options{value_title_sub}; + my %selected = map { ( $_ => 1 ) } @{ ref($options{default}) eq 'ARRAY' ? $options{default} : $options{default} ? [ $options{default} ] : [] }; + my $access = sub { my ($element, $index, $key, $sub) = @_; my $ref = ref $element; @@ -221,7 +233,7 @@ sub options_for_select { my $code = ''; foreach my $result (@elements) { my %attributes = ( value => $result->[0] ); - $attributes{selected} = 'selected' if $options{default} && ($options{default} eq ($result->[0] || '')); + $attributes{selected} = 'selected' if $selected{ $result->[0] || '' }; $code .= $self->html_tag('option', _H($result->[1]), %attributes); } @@ -234,6 +246,20 @@ sub javascript { return $self->html_tag('script', $data, type => 'text/javascript'); } +sub stylesheet_tag { + my $self = shift; + my $code = ''; + + foreach my $file (@_) { + $file .= '.css' unless $file =~ m/\.css$/; + $file = "css/${file}" unless $file =~ m|/|; + + $code .= qq||; + } + + return $code; +} + sub date_tag { my ($self, $name, $value, @slurp) = @_; my %params = _hashify(@slurp); @@ -339,6 +365,38 @@ sub tab { return +{ name => $name, data => $data }; } +sub areainput_tag { + my ($self, $name, $value, @slurp) = @_; + my %attributes = _hashify(@slurp); + + my $rows = delete $attributes{rows} || 1; + my $min = delete $attributes{min_rows} || 1; + + return $rows > 1 + ? $self->textarea_tag($name, $value, %attributes, rows => max $rows, $min) + : $self->input_tag($name, $value, %attributes); +} + +sub multiselect2side { + my ($self, $id, @slurp) = @_; + my %params = _hashify(@slurp); + + $params{labelsx} = "\"" . _J($params{labelsx} || $::locale->text('Available')) . "\""; + $params{labeldx} = "\"" . _J($params{labeldx} || $::locale->text('Selected')) . "\""; + $params{moveOptions} = 'false'; + + my $vars = join(', ', map { "${_}: " . $params{$_} } keys %params); + my $code = < + \$().ready(function() { + \$('#${id}').multiselect2side({ ${vars} }); + }); + +EOCODE + + return $code; +} + 1; __END__ @@ -470,6 +528,13 @@ tag for each file name parameter passed. Each file name will be postfixed with '.js' if it isn't already and prefixed with 'js/' if it doesn't contain a slash. +=item C + +Creates a HTML 'Elink rel="text/stylesheet" href="..."E' tag +for each file name parameter passed. Each file name will be postfixed +with '.css' if it isn't already and prefixed with 'css/' if it doesn't +contain a slash. + =item C $align_code, %attributes> Creates a date input field, with an attached javascript that will open a @@ -481,7 +546,45 @@ Right + Bottom becomes C. =item C Will create a tabbed area. The tabs should be created with the helper function -C +C. Example: + + [% L.tabbed([ + L.tab(LxERP.t8('Basic Data'), 'part/_main_tab.html'), + L.tab(LxERP.t8('Custom Variables'), 'part/_cvar_tab.html', if => SELF.display_cvar_tab), + ]) %] + +An optional attribute is C, which accepts the ordinal of a tab which +should be selected by default. + +=item C + +Creates a generic input tag or textarea tag, depending on content size. The +mount of desired rows must be given with C parameter, Accpeted parameters +include C for rendering a minimum of rows if a textarea is displayed. + +You can force input by setting rows to 1, and you can force textarea by setting +rows to anything >1. + +=item C + +Creates a JavaScript snippet calling the jQuery function +C on the select control with the ID C<$id>. The +select itself is not created. C<%params> can contain the following +entries: + +=over 2 + +=item C + +The label of the list of available options. Defaults to the +translation of 'Available'. + +=item C + +The label of the list of selected options. Defaults to the +translation of 'Selected'. + +=back =back @@ -531,6 +634,24 @@ C) will be used as the first element. The title to display for this element can be set with the option C and defaults to an empty string. +The option C can be either a scalar or an array reference +containing the values of the options which should be set to be +selected. + +=item C + +Creates a tab for C. The description will be used as displayed name. +The target should be a block or template that can be processed. C supports +a C parameter, which can override the process method to apply target. +C 'raw'> will just include the given text as is. I was too lazy to +implement C properly. + +Also an C attribute is supported, so that tabs can be suppressed based on +some occasion. In this case the supplied block won't even get processed, and +the resulting tab will get ignored by C: + + L.tab('Awesome tab wih much info', '_much_info.html', if => SELF.wants_all) + =back =head1 MODULE AUTHORS