interchange / interchange6-schema

DBIC schema for Interchange 6
8 stars 7 forks source link

Base::Attribute needs multiple attribute value support #70

Closed hexfusion closed 2 years ago

hexfusion commented 10 years ago

attributes such as Navigation meta_js will require multiple records. We need methods to support listing, setting and changing priority of these attributes.

$navigation->add_attribute({name => meta_js, priority => 1}, '/js/foo.js'); $navigation->add_attribute({name => meta_js, priority => 2}, '/js/bar.js');

$navigation->update_attribute({ name => 'meta_js', value => '/js/bar.js', priority => '2'});

$navigation->list_attributes('meta_js');