Edgewall Software

Version 2 (modified by anatoly techtonik <techtonik@…>, 13 years ago) ( diff )

example how to get option

This page describes how to work with options or settings stored in trac.ini from your Plugin. Feel free to expand.

Trac plugins don't have access to some kind of global options. Options are only available for plugin components through the self.config property. This property is magically (i.e. implicitly) injected into component when it is created - see activation chapter for details. self.config is an instance of trac.config.Configuration class.

Get option value

trac.config.Configuration is a subclass of ConfigParser from standard Python library, therefore all its methods and more are accessible.

# inside component
self.config.get('section', 'option', 'default')
Note: See TracWiki for help on using the wiki.