Help for this page

Select Code to Download


  1. or download this
    [% FOREACH file IN css %]<link rel="stylesheet" href='[%c.uri_for("/ro
    +ot/static/css/$file.css")%]' />[%END%]
    [% FOREACH file IN js %]<script src='[%c.uri_for("/root/static/js/$fil
    +e.js")%]'></script>[%END%]
    
  2. or download this
    sub register :Local {
      ...
      push @{$c->stash->{js}}, qw/
    ...
        forms
      |;
    }
    
  3. or download this
    sub include :Private {
        my ($self, $c, @include) = @_
    ...
            push @{$c->stash->{js}}, $_ foreach (@{$links{js}});
        }
    }