2010-10-29 13:19:51 +00:00
|
|
|
<?php
|
|
|
|
// MyDMS. Document Management System
|
2016-08-09 05:53:15 +00:00
|
|
|
// Copyright (C) 2002-2005 Markus Westphal
|
2010-10-29 13:19:51 +00:00
|
|
|
// Copyright (C) 2006-2008 Malcolm Cowe
|
2016-08-09 05:53:15 +00:00
|
|
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
2010-10-29 13:19:51 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
2018-10-11 07:39:02 +00:00
|
|
|
if(!isset($settings))
|
|
|
|
require_once("../inc/inc.Settings.php");
|
2022-11-09 08:25:45 +00:00
|
|
|
require_once("inc/inc.Utils.php");
|
2018-10-11 07:39:02 +00:00
|
|
|
require_once("inc/inc.LogInit.php");
|
|
|
|
require_once("inc/inc.Init.php");
|
|
|
|
require_once("inc/inc.Extension.php");
|
|
|
|
require_once("inc/inc.DBInit.php");
|
|
|
|
require_once("inc/inc.Authentication.php");
|
2010-10-29 13:19:51 +00:00
|
|
|
|
2010-12-21 17:39:59 +00:00
|
|
|
/* Get the user as passed to the script. This allows to show
|
|
|
|
* pictures of other users as well
|
|
|
|
*/
|
2011-06-15 06:08:47 +00:00
|
|
|
$userid = intval($_GET["userid"]);
|
2010-12-21 17:39:59 +00:00
|
|
|
$myUser = $dms->getUser($userid);
|
2010-10-29 13:19:51 +00:00
|
|
|
|
|
|
|
if (!$myUser->hasImage())
|
2010-11-05 21:45:21 +00:00
|
|
|
UI::exitError(getMLText("user_image"),getMLText("no_user_image"));
|
2010-10-29 13:19:51 +00:00
|
|
|
|
2018-06-21 12:17:03 +00:00
|
|
|
/* Make sure any data previous send (probably by accident, because of straying
|
|
|
|
* spaces) is removed
|
|
|
|
*/
|
|
|
|
ob_get_clean();
|
2010-12-21 17:39:59 +00:00
|
|
|
if($resArr = $myUser->getImage()) {
|
2018-06-21 11:52:37 +00:00
|
|
|
header("Content-Type: " . $resArr["mimeType"]);
|
2010-12-21 17:39:59 +00:00
|
|
|
print base64_decode($resArr["image"]);
|
|
|
|
}
|