XOOPS  2.6.0
userconfigs.php
Go to the documentation of this file.
1 <?php
2 /*
3  You may not change or alter any portion of this comment or credits
4  of supporting developers from this source code or any supporting source code
5  which is considered copyrighted (c) material of the original comment or credit authors.
6 
7  This program is distributed in the hope that it will be useful,
8  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10  */
11 
23 {
36  public function categories()
37  {
38  $categories['cat_options'] = array(
39  'name' => _MI_MONOLOG_UCONF_CAT_OPT,
41  );
42  return $categories;
43  }
44 
59  public function configs()
60  {
61  $config[]=array(
62  'name' => 'phpfire_enable',
63  'title' => '_MI_MONOLOG_UCONF_ENABLE_PHPFIRE',
64  'description' => '',
65  'formtype' => 'yesno',
66  'valuetype' => 'int',
67  'default' => 0,
68  'options' => array(),
69  'category' => 'cat_options'
70  );
71 
72  return $config;
73  }
74 }
const _MI_MONOLOG_UCONF_CAT_OPT
Definition: modinfo.php:25
return $config
const _MI_MONOLOG_UCONF_CAT_OPT_DESC
Definition: modinfo.php:26