X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Felements%2Fheader-full.html;h=5a5db962083552f70c996498cddcdf252aa7c1e4;hp=b459a11cf9dd66a1873f6e27cbabe777bb30d55b;hb=9cfa3648407dc2333fb549460fed278311c5393a;hpb=828eb6d552b55242b95e8fcfd252e5e74a8569f1 diff --git a/httemplate/elements/header-full.html b/httemplate/elements/header-full.html index b459a11cf..5a5db9620 100644 --- a/httemplate/elements/header-full.html +++ b/httemplate/elements/header-full.html @@ -44,15 +44,20 @@ Example: %> % unless ( $no_jquery ) { - - + + - - + + % if ( $FS::CurrentUser::CurrentUser->option('printtofit') ) { % } % } +% if ( $include_selectize ) { + + + +% } <% include('init_overlib.html') |n %> <% include('rs_init_object.html') |n %> @@ -95,7 +100,7 @@ Example: - + % if ( $menu_position eq 'top' ) { @@ -199,8 +204,10 @@ Example: % if ( $cookies{freeside_status} ) {
% foreach my $status_msg ( $cookies{freeside_status}->value ) { -
- +% my ($message, $type) = split /=/, $status_msg; +% $type ||= 'status'; +
<% $status_msg |h %>
+
<% $message |h %>
% } @@ -221,6 +228,7 @@ my( $title, $title_noescape, $menubar, $etc, $head ) = ( '', '', '', '', '' ); my( $nobr, $nocss, $no_jquery ) = ( 0, 0, 0 ); my $mobile; +my $include_selectize; if ( ref($_[0]) ) { my $opt = shift; @@ -233,6 +241,7 @@ if ( ref($_[0]) ) { $nocss = $opt->{nocss}; $mobile = $opt->{mobile}; $no_jquery = $opt->{no_jquery}; + $include_selectize = $opt->{include_selectize} ? 1 : 0; } else { ($title, $menubar) = ( shift, shift ); $etc = @_ ? shift : ''; #$etc is for things like onLoad= etc. @@ -263,4 +272,8 @@ if ( scalar(@agentnums) == 1 ) { $company_url = $conf->config('company_url'); } +## status->green(#eeffee), warning->yellow(#fdfd96), error->red(#f97c7c) +my %status_color = ( 'status' => '#eeffee', 'warning' => '#fefbd0', 'error' => '#f97c7c', ); +my %status_image = ( 'status' => 'images/tick.png', 'warning' => 'images/tick.png', 'error' => 'images/error.png', ); +