Bric::Biz::OutputChannel::Element

Name

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

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,