|
From: Rene R. <re...@gr...> - 2002-09-08 13:06:27
|
I'm going to use the class.rFastTemplate.php for the template scripts bobs executes. I suggest we use it for html as well. I'm making a dir called (boobsroot)/inc/templates/ I think all templates should go there I've halted my development of the more object oriented version of bobs based on my current lack of time and my pityful coding skill. I like your coding style. Really neat stuff you've made. -Rene On Sun, 2002-09-01 at 05:43, Joe zacky wrote: > 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. > |