Posted by Chad
2013-11-26

How hard would it be to add a "Home Page?" I would like to be directed to the home page after logging in. Then I would click a link to go to the address book. I could then post other information on the home page that would only be available to logged on users.
Posted by Tom
2013-11-26

Hi Chad,

Maybe, you would like to reuse "About" page for the home page.
To do so, open web/staff/app/cls_sys_base.inc.php and find the following array:
$spec_sys_base = array(
XA_CLASS=>'cls_sys_base',
XA_AUTH=>true,
XA_DEFAULT_PAGESET=>'frame',
XA_FRAME_FIELDSET=>'staff',
XA_FRAME_FIELDSET_ID=>'staff_id',
XA_START_PAGE=>'(--your-table-name--)/_def'
);
The part, (--your-table-name--) could be "addresses" or some other table name.
Replace (--your-table-name--) with about like this:
$spec_sys_base = array(
XA_CLASS=>'cls_sys_base',
XA_AUTH=>true,
XA_DEFAULT_PAGESET=>'frame',
XA_FRAME_FIELDSET=>'staff',
XA_FRAME_FIELDSET_ID=>'staff_id',
XA_START_PAGE=>'about/_def'
);
The next time you log in, you will be directed to the About page. The page template for the About page is located at
web/staff/tpl.about.detail.inc.php