ePages 7.28.0 - DE_EPAGES/MultiStore/API/Object/SubShopObject.pm

Package DE_EPAGES::MultiStore::API::Object::SubShopObject

Base class for all SubShop objects. The purpose is to provide a common parent for imported objects on the 'module level' in order to easily identify them by means of the inherited relation to this package. This package doesn't implement any functionality. Those has to be inherited from the corresponding content object class and adapted by the package itself if necessary. Therefore it is not required to map this helper class to the data model.. and due to utilization of Perls multiple inheritance feature it even wouldn't be sensible, too!

Example
package DE_EPAGES::MultiStore::API::Object::SubShopCategory;
use base qw(
    DE_EPAGES::MultiStore::API::Object::SubShopObject
    DE_EPAGES::Content::API::Object::Category
);