Name

object —

ATTRIBUTES

Attribute Pos. Req. Default Description
interpolate     0 interpolate input?
reparse     1 interpolate output?
hide     0 Hide the tag return value?

DESCRIPTION

BEHAVIOR

This tag does not appear to be affected by, or affect, the rest of Interchange.

EXAMPLES

No examples are available at this time. We do consider this a problem and will try to supply some.

NOTES

AVAILABILITY

object is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Interpolate.pm
Lines: 3929

sub tag_object {
my ($count, $item, $hash, $opt, $body) = @_;
my $param = delete $hash->{param}
  or return undef;
my $method;
my $out = '';
eval {
  if(not $method = delete $hash->{method}) {
    $out = $item->{$param}->();
  }
  else {
    $out = $item->{$param}->$method();
  }
};
return $out;
}

AUTHORS

Interchange Development Group

SEE ALSO

DocBook! Interchange!