| | |
| | | <div>The name of your service (used to compose page titles)</div> |
| | | </dd> |
| | | |
| | | <dt class="propname">skin</dt> |
| | | <dd> |
| | | <?php |
| | | |
| | | $input_skin = new html_inputfield(array('name' => '_skin', 'size' => 30, 'id' => "cfgskin")); |
| | | echo $input_skin->show($RCI->getprop('skin')); |
| | | |
| | | ?> |
| | | <div>Name of interface skin (folder in /skins)</div> |
| | | </dd> |
| | | |
| | | <dt class="propname">temp_dir</dt> |
| | | <dd> |
| | | <?php |
| | |
| | | <p class="hint">It is based on GoogieSpell what implies that the message content will be sent to Google in order to check the spelling.</p> |
| | | </dd> |
| | | |
| | | <dt class="propname">mdn_requests</dt> |
| | | <dd> |
| | | <?php |
| | | |
| | | $select_mdnreq = new html_select(array('name' => '_mdn_requests', 'id' => "cfgmdnreq")); |
| | | $select_mdnreq->add(array('ask the user', 'send automatically', 'ignore'), array(0, 1, 2)); |
| | | echo $select_mdnreq->show(intval($RCI->getprop('mdn_requests'))); |
| | | |
| | | ?> |
| | | <div>Behavior if a received message requests a message delivery notification (read receipt)</div> |
| | | </dd> |
| | | |
| | | </dl> |
| | | </fieldset> |
| | | |
| | |
| | | |
| | | ?> |
| | | </dd> |
| | | |
| | | <dt class="propname">db_backend</dt> |
| | | <dd> |
| | | <?php |
| | | |
| | | // check for existing PEAR classes |
| | | @include_once 'DB.php'; |
| | | @include_once 'MDB2.php'; |
| | | |
| | | $select_dbba = new html_select(array('name' => '_db_backend', 'id' => "cfgdbba")); |
| | | |
| | | if (class_exists('DB')) |
| | | $select_dbba->add('DB', 'db'); |
| | | if (class_exists('MDB2')) |
| | | $select_dbba->add('MDB2', 'mdb2'); |
| | | |
| | | echo $select_dbba->show($RCI->getprop('db_backend')); |
| | | |
| | | ?> |
| | | <div>PEAR Database backend to use</div> |
| | | </dd> |
| | | |
| | | </dl> |
| | | </fieldset> |
| | | |
| | |
| | | <p class="hint">Enter a <a href="http://www.faqs.org/rfcs/rfc1766">RFC1766</a> formatted language name. Examples: en_US, de_DE, de_CH, fr_FR, pt_BR</p> |
| | | </dd> |
| | | |
| | | <dt class="propname">skin <span class="userconf">*</span></dt> |
| | | <dd> |
| | | <?php |
| | | |
| | | $input_skin = new html_inputfield(array('name' => '_skin', 'size' => 30, 'id' => "cfgskin")); |
| | | echo $input_skin->show($RCI->getprop('skin')); |
| | | |
| | | ?> |
| | | <div>Name of interface skin (folder in /skins)</div> |
| | | </dd> |
| | | |
| | | <dt class="propname">pagesize <span class="userconf">*</span></dt> |
| | | <dd> |
| | | <?php |
| | |
| | | ?> |
| | | </dd> |
| | | |
| | | <dt class="propname">mdn_requests <span class="userconf">*</span></dt> |
| | | <dd> |
| | | <?php |
| | | |
| | | $select_mdnreq = new html_select(array('name' => '_mdn_requests', 'id' => "cfgmdnreq")); |
| | | $select_mdnreq->add(array('ask the user', 'send automatically', 'ignore'), array(0, 1, 2)); |
| | | echo $select_mdnreq->show(intval($RCI->getprop('mdn_requests'))); |
| | | |
| | | ?> |
| | | <div>Behavior if a received message requests a message delivery notification (read receipt)</div> |
| | | </dd> |
| | | |
| | | </dl> |
| | | |
| | | <p class="hint"><span class="userconf">*</span> These settings are defaults for the user preferences</p> |