Source code for ploneintranet.network.tool

# -*- coding: utf-8 -*-
from OFS.SimpleItem import SimpleItem
from Products.CMFCore.utils import UniqueObject
from ploneintranet.network.graph import NetworkGraph
from ploneintranet.network.interfaces import INetworkTool
from zope.interface import implements


[docs]class NetworkTool(UniqueObject, SimpleItem, NetworkGraph): """Provide INetworkContainer as a site utility.""" implements(INetworkTool) meta_type = "ploneintranet.network tool" id = "ploneintranet_network"