|
From: Joe z. <jz...@at...> - 2002-09-01 03:43:28
|
I finished breaking up class_config into three classes. These are the
variables and functions of each class. I hope I didn't break much (or
anything). I was very careful, but I couldn't do good testing because
some of it was already broken.
class config
var $admin_pwd;
var $sys_conf;
var $server_defs;
var $serverdir = '';
function config ()
function get_siteroot()
class admin extends config
var $admin_ok = 'no';
function check_admin ($password)
class server extends config
var $login_ok = 'no';
var $servers = '';
var $config = '';
function server()
function login ($login_server, $login_name, $login_password)
function set_config ($set_server)
function check_active ()
function check_day ()
function get_server_defs()
function init_new_server($server, $share)
function get_server_list()
function commit_changes ($mode)
I'm planning to start on the user/group/server access screens next. I'm
going to make another class like class_list.php for the access screens.
I also need to figure out what to do with some of the html parsing in
admin.php and gui.pinc.
|