Bric::Biz::OutputChannel::Element

NAME

Bric::Biz::OutputChannel::Element - Maps Output Channels to Element Types.

VERSION

$LastChangedRevision$

DATE

$LastChangedDate$

SYNOPSIS

use Bric::Biz::OutputChannel::Element;

# Constructors.
my $oce = Bric::Biz::OutputChannel->new($init);
my $oces_href = Bric::Biz::OutputChannel->href($params);

# Instance methods.
my $element_type_id = $oce->get_element_type_id;
$oce->set_element_type_id($element_type_id);
$oce->set_enabled_on;
$oce->set_enabled_off;
if ($oce->is_enabled) { } # do stuff.
$oce->save;

DESCRIPTION

This subclass of Bric::Biz::OutputChannel manages the relationship between output channels and elements (Bric::Biz::ElementType objects). It does so by providing accessors to properties relevant to the relationship, as well as an href() method to help along the use of a Bric::Util::Coll object.

INTERFACE

This class inherits the majority of its interface from Bric::Biz::OutputChannel. Only additional methods are documented here.

Constructors

##############################################################################

Public Instance Methods

NOTES

NONE.

AUTHOR

David Wheeler

SEE ALSO

Bric::Biz::OutputChannel, Bric::Biz::ElementType,