uses('getconf'); $global_config = $app->getconf->get_global_config(); $form["title"] = "XMPP Account"; $form["description"] = ""; $form["name"] = "xmpp_user"; $form["action"] = "xmpp_user_edit.php"; $form["db_table"] = "xmpp_user"; $form["db_table_idx"] = "xmppuser_id"; $form["db_history"] = "yes"; $form["tab_default"] = "xmppuser"; $form["list_default"] = "xmpp_user_list.php"; $form["auth"] = 'yes'; // yes / no $form["auth_preset"]["userid"] = 0; // 0 = id of the user, > 0 id must match with id of current user $form["auth_preset"]["groupid"] = 0; // 0 = default groupid of the user, > 0 id must match with groupid of current user $form["auth_preset"]["perm_user"] = 'riud'; //r = read, i = insert, u = update, d = delete $form["auth_preset"]["perm_group"] = 'riud'; //r = read, i = insert, u = update, d = delete $form["auth_preset"]["perm_other"] = ''; //r = read, i = insert, u = update, d = delete $form["tabs"]['xmppuser'] = array( 'title' => "XMPP Account", 'width' => 100, 'template' => "templates/xmpp_user_edit.htm", 'fields' => array ( //################################# // Begin Datatable fields //################################# 'server_id' => array ( 'datatype' => 'INTEGER', 'formtype' => 'TEXT', 'default' => '', 'value' => '', 'width' => '30', 'maxlength' => '255' ), 'jid' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'TEXT', 'filters' => array( 0 => array( 'event' => 'SAVE', 'type' => 'IDNTOASCII'), 1 => array( 'event' => 'SHOW', 'type' => 'IDNTOUTF8'), 2 => array( 'event' => 'SAVE', 'type' => 'TOLOWER') ), 'validators' => array ( 0 => array ( 'type' => 'ISEMAIL', 'errmsg'=> 'jid_error_isemail'), 1 => array ( 'type' => 'UNIQUE', 'errmsg'=> 'jid_error_unique'), ), 'default' => '', 'value' => '', 'width' => '30', 'maxlength' => '255', 'searchable' => 1 ), 'password' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'PASSWORD', 'validators' => array( 0 => array( 'type' => 'CUSTOM', 'class' => 'validate_password', 'function' => 'password_check', 'errmsg' => 'weak_password_txt' ) ), 'encryption'=> 'CRYPT', 'default' => '', 'value' => '', 'width' => '30', 'maxlength' => '255' ), 'active' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'CHECKBOX', 'default' => 'y', 'value' => array(1 => 'y', 0 => 'n') ), //################################# // END Datatable fields //################################# ) ); ?>