|
From: Justin H. <jus...@us...> - 2005-10-14 20:37:46
|
Update of /cvsroot/mxbb/mx_who_am_i In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12498/mx_who_am_i Added Files: changelog.txt mx_who_am_i.pak mx_who_am_i.php readme.txt Log Message: New module: mx_who_am_i Quick profile view for users logged in with REG access rights. --- NEW FILE: changelog.txt --- /********************************************************************************\ | | subject : mx-portal, CMS & portal, module | name : Who Am I | begin : october, 2005 | copyright : (C) 2002-2005 MX-System | author : horace & retorq (see below) | email : ho...@em... | mxBB project site : www.mx-system.com | | credit : This module is based on the mx_loggedin function | created by RETORQ. | re...@di... | www.digitalhijinx.com | | description : The "Who Am I" block is a block is a block that | will be visable only to registered users who are | logged in. It can be used to quickly display | statistics and current user image. |********************************************************************************| | | $Id: changelog.txt,v 1.1 2005/10/14 20:37:32 justinheasman Exp $ | \********************************************************************************/ /********************************************************************************\ | | This program is free software; you can redistribute it and/or modify | it under the terms of the GNU General Public License as published by | the Free Software Foundation; either version 2 of the License, or | (at your option) any later version. | \********************************************************************************/ /********************************************************************************\ | Version 1.0 - First Public Release \********************************************************************************/ * After full testing - changed version number to 1.0 for release. /********************************************************************************\ | Version 0.1 - Initial Beta Release \********************************************************************************/ * Initial release. * Re-worked mx_loggedin.php by RETORQ into a classed environment. * Re-worked template files to match new mxBB 2.8 classes. * Moved template files into templates/subSilver folder * Created includes/mx_common.php. * Created language files for the module. * Created full installation routines for module. * Renamed new module to mx_who_am_i /********************************************************************************\ | End Of Document \********************************************************************************/ --- NEW FILE: mx_who_am_i.pak --- module=+:1100=+:Who Am I=+:modules/mx_who_am_i/=+:mx_who_am_i version 1.0=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 function=+:1100=+:1110=+:Who Am I=+:Who Am I=+:mx_who_am_i.php=+: block=+:1120=+:Demo - Who Am I=+:Demo block=+:1110=+:0=+:5=+:0 function=+:0=+:0=+:0=+:endoflist=+:0=+:0 --- NEW FILE: mx_who_am_i.php --- <?php /********************************************************************************\ | | subject : mx-portal, CMS & portal, module | name : Who Am I | begin : october, 2005 | copyright : (C) 2002-2005 MX-System | author : horace & retorq (see below) | email : ho...@em... | mxBB project site : www.mx-system.com | | credit : This module is based on the mx_loggedin function | created by RETORQ. | re...@di... | www.digitalhijinx.com | | description : The "Who Am I" block is a block is a block that | will be visable only to registered users who are | logged in. It can be used to quickly display | statistics and current user image. |********************************************************************************| | | $Id: mx_who_am_i.php,v 1.1 2005/10/14 20:37:32 justinheasman Exp $ | \********************************************************************************/ /********************************************************************************\ | | This program is free software; you can redistribute it and/or modify | it under the terms of the GNU General Public License as published by | the Free Software Foundation; either version 2 of the License, or | (at your option) any later version. | \********************************************************************************/ /********************************************************************************\ | Security Section (Self Explainatory) \********************************************************************************/ if (!defined('IN_PORTAL')) { die("Hacking attempt"); } /********************************************************************************\ | Main Body Section (Main Stuff) \********************************************************************************/ include_once('includes/mx_common.' . $phpEx); $who_am_i->show_block(); /********************************************************************************\ | End Of Function (Self Explainatory) \********************************************************************************/ ?> --- NEW FILE: readme.txt --- /********************************************************************************\ | | subject : mx-portal, CMS & portal, module | name : Who Am I | begin : october, 2005 | copyright : (C) 2002-2005 MX-System | author : horace & retorq (see below) | email : ho...@em... | mxBB project site : www.mx-system.com | | credit : This module is based on the mx_loggedin function | created by RETORQ. | re...@di... | www.digitalhijinx.com | | description : The "Who Am I" block is a block is a block that | will be visable only to registered users who are | logged in. It can be used to quickly display | statistics and current user image. |********************************************************************************| | | $Id: readme.txt,v 1.1 2005/10/14 20:37:32 justinheasman Exp $ | \********************************************************************************/ /********************************************************************************\ | | This program is free software; you can redistribute it and/or modify | it under the terms of the GNU General Public License as published by | the Free Software Foundation; either version 2 of the License, or | (at your option) any later version. | \********************************************************************************/ /********************************************************************************\ | Installation Instructions \********************************************************************************/ Note: In order for this module to install you must have a working phpBB and mxBB installation. 1) Copy the folder: mx_who_am_i into your: {mxBB install}\modules\ folder on your web server. 2) From your website enter mxBB Admin Control Panel. 3) Under mxBB-Portal click on Management. 4) Now click on Modules Setup. 5) Under Module Administration use the pull down menu and choose: mx_who_am_i 6) Press the Install Module button 7) If you have followed the instructions correctly you should now be able to create mx_who_am_i blocks for inclusion on you pages. /********************************************************************************\ | End Of Document \********************************************************************************/ |