source: products/qPloneTabs/trunk/skins/qPloneTabs/qpt_setvisibility.py @ 1591

Last change on this file since 1591 was 1, checked in by myroslav, 18 years ago

Building directory structure

  • Property svn:eol-style set to native
File size: 461 bytes
Line 
1## Script (Python) "qpt_setvisibility"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters= id, visibility
8##title=
9##
10
11from Products.CMFCore.utils import getToolByName
12obj = getToolByName(context, id, None)
13if obj:
14    if visibility == 'true': visibility = False
15    else: visibility = True
16    obj.update(excludeFromNav = visibility)
17
18return "Visibility set to %s" % visibility
Note: See TracBrowser for help on using the repository browser.