Help for this page

Select Code to Download


  1. or download this
    sub auxdata {
        my $self = shift;
    ...
            return $self->auxclass->retrieve_all();
        }
    }
    
  2. or download this
    [% FOREACH aux = object.auxdata %]
    <option value="[% aux.id %]">[% aux.name %]</option>
    [% END %]
    
  3. or download this
    [% WHILE ax = a.auxdata.next %]
    ID [% ax.id %]
    [% END %]