diff options
author | ivan <ivan> | 2002-01-29 16:33:16 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-01-29 16:33:16 +0000 |
commit | 6991d4986df7fb3a6c7c49b5ae1b3713e87a16c4 (patch) | |
tree | 40efa15fb918ceb4e065160a4257349322658b6c /httemplate/docs/man/FS/Conf.html | |
parent | f02dd9b0e5042ef000d9338089eed50988d48914 (diff) |
- web interface for hourly account charges!
(FS::cust_pkg, FS::cust_svc and FS::svc_acct seconds_since methods)
- Makefile target to regenerate HTML manpages on install
- FS.pm doc update
- $FS::Record::Debug now dumps all SQL
- new FS::cust_main methods: ->cancel, ->invoicing_list_addpost
- start of a billing event web interface
- cust_pay::upgrade_replace doesn't error out if history includes
overapplied payments
Diffstat (limited to 'httemplate/docs/man/FS/Conf.html')
-rw-r--r-- | httemplate/docs/man/FS/Conf.html | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/httemplate/docs/man/FS/Conf.html b/httemplate/docs/man/FS/Conf.html index 7b1613efd..be49be31f 100644 --- a/httemplate/docs/man/FS/Conf.html +++ b/httemplate/docs/man/FS/Conf.html @@ -1,6 +1,6 @@ <HTML> <HEAD> -<TITLE>FS::Conf - Read access to Freeside configuration values</TITLE> +<TITLE>FS::Conf - Freeside configuration values</TITLE> <LINK REV="made" HREF="mailto:perl@packages.debian.org"> </HEAD> @@ -23,7 +23,7 @@ <HR> <P> <H1><A NAME="name">NAME</A></H1> -<P>FS::Conf - Read access to Freeside configuration values</P> +<P>FS::Conf - Freeside configuration values</P> <P> <HR> <H1><A NAME="synopsis">SYNOPSIS</A></H1> @@ -40,10 +40,12 @@ $value = $conf->config('key'); @list = $conf->config('key'); $bool = $conf->exists('key');</PRE> +<PRE> + @config_items = $conf->config_items;</PRE> <P> <HR> <H1><A NAME="description">DESCRIPTION</A></H1> -<P>Read access to Freeside configuration values. Keys currently map to filenames, +<P>Read and write Freeside configuration values. Keys currently map to filenames, but this may change in the future.</P> <P> <HR> @@ -66,15 +68,29 @@ Returns the configuration value or values (depending on context) for key. <DD> Returns true if the specified key exists, even if the corresponding value is undefined. +<P></P> +<DT><STRONG><A NAME="item_touch">touch</A></STRONG><BR> +<DD> +<DT><STRONG><A NAME="item_set">set</A></STRONG><BR> +<DD> +<DT><STRONG><A NAME="item_delete">delete</A></STRONG><BR> +<DD> +<DT><STRONG><A NAME="item_config_items">config_items</A></STRONG><BR> +<DD> +Returns all of the possible configuration items as FS::ConfItem objects. See +<A HREF=".././FS/ConfItem.html">the FS::ConfItem manpage</A>. <P></P></DL> <P> <HR> <H1><A NAME="bugs">BUGS</A></H1> -<P>Write access (with locking) should be implemented.</P> +<P>Write access (touch, set, delete) should be documented.</P> +<P>If this was more than just crud that will never be useful outside Freeside I'd +worry that config_items is freeside-specific and icky.</P> <P> <HR> <H1><A NAME="see also">SEE ALSO</A></H1> -<P>config.html from the base documentation contains a list of configuration files.</P> +<P>``Configuration'' in the web interface (config/config.cgi).</P> +<P>httemplate/docs/config.html</P> </BODY> |