API Documentation

class ObjectManagerItem

A Zope object that can be contained within an Object Manager. Almost all Zope objects that can be managed through the web are Object Manager Items.

ObjectMangerItems have these instance attributes:

title
The title of the object.

This is an optional one-line string description of the object.

meta_type
A short name for the type of the object.

This is the name that shows up in product add list for the object and is used when filtering objects by type.

This attribute is provided by the object's class and should not be changed directly.

REQUEST
The current web request.

This object is acquired and should not be set.


__module__ = __builtin__

Methods

restrictedTraverse(path, default=None):

Return the object obtained by traversing the given path from the object on which the method was called, performing security checks along the way.

If an object is not found then the default argument will be returned.

Permission
Always available

this():

Return the object.

This turns out to be handy in two situations. First, it provides a way to refer to an object in DTML expressions.

The second use for this is rather deep. It provides a way to acquire an object without getting the full context that it was acquired from. This is useful, for example, in cases where you are in a method of a non-item subobject of an item and you need to get the item outside of the context of the subobject.

Permission
Always available

getPhysicalPath():

Get the path of an object from the root, ignoring virtual hosts.

Permission
Always available

absolute_url(relative=None):

Return the absolute url to the object.

If the relative argument is provided with a true value, then the URL returned is relative to the site object. Note, if virtual hosts are being used, then the path returned is a logical, rather than a physical path.

Permission
Always available

getId():

Returns the object's id.

The id is the unique name of the object within its parent object manager. This should be a string, and can contain letters, digits, underscores, dashes, commas, and spaces.

This method replaces direct access to the id attribute.

Permission
Always available

title_or_id():

If the title is not blank, return it, otherwise return the id.

Permission
Always available

title_and_id():

If the title is not blank, the return the title followed by the id in parentheses. Otherwise return the id.

Permission
Always available

getPhysicalRoot():

Returns the top-level Zope Application object.

Permission
Python only

manage_workspace():

This is the web method that is called when a user selects an item in a object manager contents view or in the Zope Management navigation view.

Permission
View management screens

unrestrictedTraverse(path, default=None):

Return the object obtained by traversing the given path from the object on which the method was called. This method begins with "unrestricted" because (almost) no security checks are performed.

If an object is not found then the default argument will be returned.

Permission
Python only