Difference between revisions of "Freeside:3:Documentation:Developer/FS/ConfItem"
From Freeside
m (Edit via perl MediaWiki framework (1.13)) |
m (Edit via perl MediaWiki framework (1.13)) |
||
Line 1: | Line 1: | ||
+ | ==NAME== | ||
+ | FS::ConfItem - Configuration option meta-data. | ||
+ | ==SYNOPSIS== | ||
+ | <code> | ||
+ | use FS::Conf; | ||
+ | @config_items = $conf->config_items; | ||
+ | |||
+ | foreach $item ( @config_items ) { | ||
+ | $key = $item->key; | ||
+ | $section = $item->section; | ||
+ | $description = $item->description; | ||
+ | } | ||
+ | </code> | ||
+ | ==DESCRIPTION== | ||
+ | ==METHODS== | ||
+ | ; new; key; section; description | ||
+ | ==BUGS== | ||
+ | Terse docs. | ||
+ | |||
+ | ==SEE ALSO== | ||
+ | [[Freeside:3:Documentation:Developer/FS/Conf|FS::Conf]] |
Latest revision as of 05:30, 10 February 2015
Contents
NAME
FS::ConfItem - Configuration option meta-data.
SYNOPSIS
use FS::Conf; @config_items = $conf->config_items; foreach $item ( @config_items ) { $key = $item->key; $section = $item->section; $description = $item->description; }
DESCRIPTION
METHODS
- new; key; section; description
BUGS
Terse docs.