From: <gbr...@us...> - 2004-01-06 20:27:00
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/conf In directory sc8-pr-cvs1:/tmp/cvs-serv25928/conf Modified Files: boost.php config.php manager.php users.php Log Message: Prepare for v1.3 release Index: boost.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/conf/boost.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** boost.php 24 Sep 2003 23:40:29 -0000 1.7 --- boost.php 6 Jan 2004 20:26:56 -0000 1.8 *************** *** 22,31 **** $user_icon = "staff.gif"; /* This module has an admin interface in the Modules display */ - /* If this is set to 1, and there is no conf/users.php file specifying a location, */ - /* on installation you may be asked in what module column to list */ - /* the staffman-admin icon. Click the Add button above the column where it should */ - /* be located. Then use the arrows to move the icon up and down. Click */ - /* Edit Menu Off in the User panel at the top of the body display to turn off */ - /* the icon positioning controls */ $admin_mod = 1; /* This module doesn't have a user interface in the Modules display. */ --- 22,25 ---- *************** *** 35,46 **** /* Sessions variable storing the module object */ $mod_sessions = array("STAFF_ListManager"); ! /* Classes and constructors of each class you would like initiated as module loads ??? */ $init_object = array("STAFF_ListManager"=>"STAFF_ListManager", "staffmember"=>"staffmember"); /* Whether or not the module is active */ $active = "on"; /* This package's version number */ ! $version = "1.21"; ! /* not sure, but likely the location on the web of the current version number */ ! /* $update_link = "phpwebsite.appstate.edu/fallout/updates/linkman/VERSION"; */ /* other modules on which this module depends */ $depend = array("menuman", "search"); --- 29,38 ---- /* Sessions variable storing the module object */ $mod_sessions = array("STAFF_ListManager"); ! /* Classes and constructors of each class you would like initiated as module loads */ $init_object = array("STAFF_ListManager"=>"STAFF_ListManager", "staffmember"=>"staffmember"); /* Whether or not the module is active */ $active = "on"; /* This package's version number */ ! $version = "1.3"; /* other modules on which this module depends */ $depend = array("menuman", "search"); Index: config.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/conf/config.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** config.php 2 Jul 2003 23:45:08 -0000 1.1.1.1 --- config.php 6 Jan 2004 20:26:56 -0000 1.2 *************** *** 10,14 **** */ ! define("STAFFMAN_DIR", PHPWS_HOME_DIR . "images/staffman/"); //NO SPACES in image types list --- 10,14 ---- */ ! define("STAFFMAN_DIR", PHPWS_SOURCE_DIR . "images/staffman/"); //NO SPACES in image types list Index: manager.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/conf/manager.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** manager.php 2 Jul 2003 23:45:08 -0000 1.1.1.1 --- manager.php 6 Jan 2004 20:26:56 -0000 1.2 *************** *** 1,5 **** <?php /** ! * Manager configuration file * Tells core/manager.php where to find things and how to display them * --- 1,5 ---- <?php /** ! * Manager configuration file for staffman * Tells core/manager.php where to find things and how to display them * Index: users.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/conf/users.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** users.php 2 Jul 2003 23:45:08 -0000 1.1.1.1 --- users.php 6 Jan 2004 20:26:56 -0000 1.2 *************** *** 1,5 **** <?php /** ! * File conf/users.php * Defines which Module column to display columns leading to admin and user interfaces * Note that whether there ARE such interfaces is defined in conf/boost.php --- 1,6 ---- <?php /** ! * File conf/users.php for staffman ! * * Defines which Module column to display columns leading to admin and user interfaces * Note that whether there ARE such interfaces is defined in conf/boost.php |