C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\xoops\html\misc.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<?php
// $Id: misc.php,v 1.15.4.2.2.9 2005/07/19 18:14:34 mithyt2 Exp $
//  ------------------------------------------------------------------------ //
//                XOOPS - PHP Content Management System                      //
//                    Copyright (c) 2000 XOOPS.org                           //
//                       <http://www.xoops.org/>                             //
//  ------------------------------------------------------------------------ //
//  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.                                      //
//                                                                           //
//  You may not change or alter any portion of this comment or credits       //
//  of supporting developers from this source code or any supporting         //
//  source code which is considered copyrighted (c) material of the          //
//  original comment or credit authors.                                      //
//                                                                           //
//  This program is distributed in the hope that it will be useful,          //
//  but WITHOUT ANY WARRANTY; without even the implied warranty of           //
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            //
//  GNU General Public License for more details.                             //
//                                                                           //
//  You should have received a copy of the GNU General Public License        //
//  along with this program; if not, write to the Free Software              //
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA //
//  ------------------------------------------------------------------------ //

include "mainfile.php";
include_once 
XOOPS_ROOT_PATH.'/language/'.$xoopsConfig['language'].'/misc.php';
$action = isset($_GET['action']) ? trim($_GET['action']) : '';
$action = isset($_POST['action']) ? trim($_POST['action']) : $action;
$type = isset($_GET['type']) ? trim($_GET['type']) : '';
$type = isset($_POST['type']) ? trim($_POST['type']) : $type;

if ( 
$action == "showpopups" ) {
    
xoops_header(false);
    
// show javascript close button?
    
$closebutton 1;
    switch ( 
$type ) {
    case 
"smilies":
        
$target = isset($_GET['target']) ? trim($_GET['target']) : '';
        if (
$target == '' || !preg_match('/^[0-9a-z_]*$/i'$target)) {
        } else {
            echo 
"<script type=\"text/javascript\"><!--//
            function doSmilie(addSmilie) {
            var currentMessage = window.opener.xoopsGetElementById(\""
.$target."\").value;
            window.opener.xoopsGetElementById(\""
.$target."\").value=currentMessage+addSmilie;
            return;
            }
            //-->
            </script>
            "
;
            echo 
'</head><body>
            <table width="100%" class="outer">
            <tr><th colspan="3">'
._MSC_SMILIES.'</th></tr>
            <tr class="head"><td>'
._MSC_CODE.'</td><td>'._MSC_EMOTION.'</td><td>'._IMAGE.'</td></tr>';
            if (
$getsmiles $xoopsDB->query("SELECT * FROM ".$xoopsDB->prefix("smiles"))) {
                
$rcolor 'even';
                while ( 
$smile $xoopsDB->fetchArray($getsmiles) ) {
                    echo 
"<tr class='$rcolor'><td>".$smile['code']."</td><td>".$smile['emotion']."</td><td><img onmouseover='style.cursor=\"hand\"' onclick='doSmilie(\" ".$smile['code']." \");' src='".XOOPS_UPLOAD_URL."/".$smile['smile_url']."' alt='' /></td></tr>";
                    
$rcolor = ($rcolor == 'even') ? 'odd' 'even';
                }
            } else {
                echo 
"Could not retrieve data from the database.";
            }
            echo 
'</table>'._MSC_CLICKASMILIE;
        }
        break;
    case 
"avatars":
        
?>
        <script type='text/javascript'>
        <!--//
        function myimage_onclick(counter){
            window.opener.xoopsGetElementById("user_avatar").options[counter].selected = true;
            showAvatar();
            window.opener.xoopsGetElementById("user_avatar").focus();
            window.close();
        }
        function showAvatar() {
            window.opener.xoopsGetElementById("avatar").src='<?php echo XOOPS_UPLOAD_URL;?>/' + window.opener.xoopsGetElementById("user_avatar").options[window.opener.xoopsGetElementById("user_avatar").selectedIndex].value;
        }
        //-->
        </script>
        </head><body>
        <h4><?php echo _MSC_AVAVATARS;?></h4>
        <form name='avatars' action='<?php echo $_SERVER['REQUEST_URI'];?>'>
        <table width='100%'><tr>
        <?php
        $avatar_handler 
=& xoops_gethandler('avatar');
        
$avatarslist =& $avatar_handler->getList('S');
        
$cntavs 0;
        
$counter = isset($_GET['start']) ? intval($_GET['start']) : 0;
            foreach (
$avatarslist as $file => $name) {
            echo 
'<td><img src="uploads/'.$file.'" alt="'.$name.'" style="padding:10px; vertical-align:top;"  /><br />'.$name.'<br /><input name="myimage" type="button" value="'._SELECT.'" onclick="myimage_onclick('.$counter.')" /></td>';
            
$counter++;
            
$cntavs++;
            if (
$cntavs 8) {
                echo 
'</tr><tr>';
                
$cntavs=0;
            }
        }
        echo 
'</tr></table></form></div>';
        break;
    case 
"friend":
        if ( !
$GLOBALS['xoopsSecurity']->check() || !isset($_POST['op']) || $_POST['op'] == "sendform") {
            if ( 
$xoopsUser ) {
                
$yname $xoopsUser->getVar("uname"'e');
                
$ymail $xoopsUser->getVar("email"'e');
                
$fname "";
                
$fmail "";
            } else {
                
$yname "";
                
$ymail "";
                
$fname "";
                
$fmail "";
            }
            
printCheckForm();
            echo 
'</head><body>';
            if (isset(
$_POST['op'])) {
                echo 
"<div class='errorMsg'>".implode('<br />'$GLOBALS['xoopsSecurity']->getErrors())."</div>";
            }
            echo 
'
            <form action="'
.XOOPS_URL.'/misc.php" method="post" onsubmit="return checkForm();"><table  width="100%" class="outer" cellspacing="1"><tr><th colspan="2">'._MSC_RECOMMENDSITE.'</th></tr>';
            echo 
"<tr><td class='head'>
                <input type='hidden' name='op' value='sendsite' />
                <input type='hidden' name='action' value='showpopups' />
                <input type='hidden' name='type' value='friend' />\n"
;
            echo 
_MSC_YOURNAMEC."</td><td class='even'><input type='text' name='yname' value='$yname' id='yname' /></td></tr>
                <tr><td class='head'>"
._MSC_YOUREMAILC."</td><td class='odd'><input type='text' name='ymail' value='".$ymail."' id='ymail' /></td></tr>
                <tr><td class='head'>"
._MSC_FRIENDNAMEC."</td><td class='even'><input type='text' name='fname' value='$fname' id='fname' /></td></tr>
                <tr><td class='head'>"
._MSC_FRIENDEMAILC."</td><td class='odd'><input type='text' name='fmail' value='$fmail' id='fmail' /></td></tr>
                <tr><td class='head'>&nbsp;</td><td class='even'><input type='submit' value='"
._SEND."' />&nbsp;<input value='"._CLOSE."' type='button' onclick='javascript:window.close();' />".$GLOBALS['xoopsSecurity']->getTokenHTML()."</td></tr>
                </table></form>\n"
;
            
$closebutton 0;
        } elseif (
$_POST['op'] == "sendsite") {
            
$myts =& MyTextsanitizer::getInstance();
            if ( 
$xoopsUser ) {
                
$ymail $xoopsUser->getVar("email");
            } else {
                
$ymail = isset($_POST['ymail']) ? $myts->stripSlashesGPC(trim($_POST['ymail'])) : '';
            }
            if ( !isset(
$_POST['yname']) || trim($_POST['yname']) == "" || $ymail == '' || !isset($_POST['fname']) || trim($_POST['fname']) == ""  || !isset($_POST['fmail']) || trim($_POST['fmail']) == '' ) {
                
redirect_header(XOOPS_URL."/misc.php?action=showpopups&amp;type=friend&amp;op=sendform",2,_MSC_NEEDINFO);
                exit();
            }
            
$yname $myts->stripSlashesGPC(trim($_POST['yname']));
            
$fname $myts->stripSlashesGPC(trim($_POST['fname']));
            
$fmail $myts->stripSlashesGPC(trim($_POST['fmail']));
            if (!
checkEmail($fmail) || !checkEmail($ymail)) {
                
$errormessage _MSC_INVALIDEMAIL1."<br />"._MSC_INVALIDEMAIL2."";
                
redirect_header(XOOPS_URL."/misc.php?action=showpopups&amp;type=friend&amp;op=sendform",2,$errormessage);
                exit();
            }
            
$xoopsMailer =& getMailer();
            
$xoopsMailer->setTemplate("tellfriend.tpl");
            
$xoopsMailer->assign("SITENAME"$xoopsConfig['sitename']);
            
$xoopsMailer->assign("ADMINMAIL"$xoopsConfig['adminmail']);
            
$xoopsMailer->assign("SITEURL"XOOPS_URL."/");
            
$xoopsMailer->assign("YOUR_NAME"$yname);
            
$xoopsMailer->assign("FRIEND_NAME"$fname);
            
$xoopsMailer->setToEmails($fmail);
            
$xoopsMailer->setFromEmail($ymail);
            
$xoopsMailer->setFromName($yname);
            
$xoopsMailer->setSubject(sprintf(_MSC_INTSITE,$xoopsConfig['sitename']));
            
//OpenTable();
            
if ( !$xoopsMailer->send() ) {
                echo 
$xoopsMailer->getErrors();
            } else {
                echo 
"<div><h4>"._MSC_REFERENCESENT."</h4></div>";
            }
            
//CloseTable();
        
}
        break;
    case 
'online':
        
$isadmin $xoopsUserIsAdmin;
        echo 
'</head><body><table  width="100%" cellspacing="1" class="outer"><tr><th colspan="3">'._WHOSONLINE.'</th></tr>';
        
$start = isset($_GET['start']) ? intval($_GET['start']) : 0;
        
$online_handler =& xoops_gethandler('online');
        
$online_total =& $online_handler->getCount();
        
$limit = ($online_total 20) ? 20 $online_total;
        
$criteria = new CriteriaCompo();
        
$criteria->setLimit($limit);
        
$criteria->setStart($start);
        
$onlines =& $online_handler->getAll($criteria);
        
$count count($onlines);
        
$module_handler =& xoops_gethandler('module');
        
$modules =& $module_handler->getList(new Criteria('isactive'1));
        for (
$i 0$i $count$i++) {
            if (
$onlines[$i]['online_uid'] == 0) {
                
$onlineUsers[$i]['user'] = '';
            } else {
                
$onlineUsers[$i]['user'] =& new XoopsUser($onlines[$i]['online_uid']);
            }
            
$onlineUsers[$i]['ip'] = $onlines[$i]['online_ip'];
            
$onlineUsers[$i]['updated'] = $onlines[$i]['online_updated'];
            
$onlineUsers[$i]['module'] = ($onlines[$i]['online_module'] > 0) ? $modules[$onlines[$i]['online_module']] : '';
        }
        
$class 'even';
        for (
$i 0$i $count$i++) {
            
$class = ($class == 'odd') ? 'even' 'odd';
            echo 
'<tr valign="middle" align="center" class="'.$class.'">';
            if (
is_object($onlineUsers[$i]['user'])) {
                
$avatar $onlineUsers[$i]['user']->getVar('user_avatar') ? '<img src="'.XOOPS_UPLOAD_URL.'/'.$onlineUsers[$i]['user']->getVar('user_avatar').'" alt="" />' '&nbsp;';
                echo 
'<td>'.$avatar."</td><td><a href=\"javascript:window.opener.location='".XOOPS_URL."/userinfo.php?uid=".$onlineUsers[$i]['user']->getVar('uid')."';window.close();\">".$onlineUsers[$i]['user']->getVar('uname')."</a>";
            } else {
                echo 
'<td>&nbsp;</td><td>'.$xoopsConfig['anonymous'];
            }
            if (
$isadmin == 1) {
                echo 
'<br />('.$onlineUsers[$i]['ip'].')';
            }
            echo 
'</td><td>'.$onlineUsers[$i]['module'].'</td></tr>';
        }
        echo 
'</table><br />';
        if (
$online_total 20) {
            include_once 
XOOPS_ROOT_PATH.'/class/pagenav.php';
            
$nav = new XoopsPageNav($online_total20$start'start''action=showpopups&amp;type=online');
            echo 
'<div style="text-align: right;">'.$nav->renderNav().'</div>';
        }
        break;
    case 
'ssllogin':
        if (
$xoopsConfig['use_ssl'] && isset($_POST[$xoopsConfig['sslpost_name']]) && is_object($xoopsUser)) {
            include_once 
XOOPS_ROOT_PATH.'/language/'.$xoopsConfig['language'].'/user.php';
            echo 
sprintf(_US_LOGGINGU$xoopsUser->getVar('uname'));
            echo 
'<div style="text-align:center;"><input class="formButton" value="'._CLOSE.'" type="button" onclick="window.opener.location.reload();window.close();" /></div>';
            
$closebutton false;
        }
        break;
    default:
        break;
    }
    if (
$closebutton) {
        echo 
'<div style="text-align:center;"><input class="formButton" value="'._CLOSE.'" type="button" onclick="javascript:window.close();" /></div>';
    }
    
xoops_footer();
}

function 
printCheckForm()
{
    
?>
    <script type='text/javascript'>
        <!--//
        function checkForm()
        {
            if ( xoopsGetElementById("yname").value == "" ){
                alert( "<?php echo _MSC_ENTERYNAME;?>" );
                xoopsGetElementById("yname").focus();
                return false;
            } else if ( xoopsGetElementById("fname").value == "" ){
                alert( "<?php echo _MSC_ENTERFNAME;?>" );
                xoopsGetElementById("fname").focus();
                return false;
            } else if ( xoopsGetElementById("fmail").value ==""){
                alert( "<?php echo _MSC_ENTERFMAIL;?>" );
                xoopsGetElementById("fmail").focus();
                return false;
            } else {
                return true;
            }
        }
        //-->
    </script>
    <?php
}
?>