|
From: Horace <jus...@us...> - 2005-10-17 13:15:57
|
Update of /cvsroot/mxbb/mx_who_am_i/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3307/mx_who_am_i/includes Modified Files: mx_common.php Log Message: Pre-mxBB 2.8 RC7 Changes. Index: mx_common.php =================================================================== RCS file: /cvsroot/mxbb/mx_who_am_i/includes/mx_common.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mx_common.php 16 Oct 2005 14:09:03 -0000 1.2 --- mx_common.php 17 Oct 2005 13:15:48 -0000 1.3 *************** *** 2,24 **** /********************************************************************************\ | ! | subject : mx-portal, CMS & portal, module ! | name : mx_who_am_i | begin : october, 2005 ! | copyright : (C) 2002-2005 MX-System | mxBB project site : www.mx-system.com | ! | author : horace (see additional credit below) ! | author site : www.empire-wars.com | author email : ho...@em... | | additional 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. |********************************************************************************| | --- 2,24 ---- /********************************************************************************\ | ! | subject : mx-portal, CMS & portal, module ! | name : mx_who_am_i | begin : october, 2005 ! | copyright : (C) 2002-2005 MX-System | mxBB project site : www.mx-system.com | ! | author : horace (see additional credit below) ! | author site : www.empire-wars.com | author email : ho...@em... | | additional 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. |********************************************************************************| | *************** *** 78,85 **** /********************************************************************************\ ! | The Get_Details function oes exactly what it says - it gets and poulates | the class variables. \********************************************************************************/ ! function get_details() { global $userdata; --- 78,85 ---- /********************************************************************************\ ! | The Get_Details function does exactly what it says - it gets and populates | the class variables. \********************************************************************************/ ! function _get_details() { global $userdata; *************** *** 131,135 **** | Get language for the HTML Output (All Language Related) \********************************************************************************/ ! function get_language() { global $phpEx; --- 131,135 ---- | Get language for the HTML Output (All Language Related) \********************************************************************************/ ! function _get_language() { global $phpEx; *************** *** 150,154 **** | HTML Output Section - Using Templates (All Output Related) \********************************************************************************/ ! function html_output() { global $phpEx; --- 150,154 ---- | HTML Output Section - Using Templates (All Output Related) \********************************************************************************/ ! function _html_output() { global $phpEx; *************** *** 184,194 **** /********************************************************************************\ ! | HTML Output Section - Using Templates (All Output Related) \********************************************************************************/ function show_block() { ! $this->get_language(); ! $this->get_details(); ! $this->html_output(); } } --- 184,194 ---- /********************************************************************************\ ! | The one call to show the block \********************************************************************************/ function show_block() { ! $this->_get_language(); ! $this->_get_details(); ! $this->_html_output(); } } |