user_edit.php 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. use Chamilo\CoreBundle\Framework\Container;
  4. /**
  5. * @package chamilo.admin
  6. */
  7. $cidReset = true;
  8. $this_section = SECTION_PLATFORM_ADMIN;
  9. api_protect_admin_script(true);
  10. $user_id = isset($_GET['user_id']) ? intval($_GET['user_id']) : intval($_POST['user_id']);
  11. api_protect_super_admin($user_id, null, true);
  12. $is_platform_admin = api_is_platform_admin() ? 1 : 0;
  13. $userInfo = api_get_user_info($user_id);
  14. $htmlHeadXtra[] = '
  15. <script>
  16. var is_platform_id = "'.$is_platform_admin.'";
  17. function enable_expiration_date() {
  18. document.user_edit.radio_expiration_date[0].checked=false;
  19. document.user_edit.radio_expiration_date[1].checked=true;
  20. }
  21. function password_switch_radio_button(){
  22. var input_elements = document.getElementsByTagName("input");
  23. for (var i = 0; i < input_elements.length; i++) {
  24. if(input_elements.item(i).name == "reset_password" && input_elements.item(i).value == "2") {
  25. input_elements.item(i).checked = true;
  26. }
  27. }
  28. }
  29. function display_drh_list(){
  30. var $radios = $("input:radio[name=platform_admin]");
  31. if (document.getElementById("status_select").value=='.COURSEMANAGER.') {
  32. if (is_platform_id == 1)
  33. document.getElementById("id_platform_admin").style.display="block";
  34. } else if (document.getElementById("status_select").value=='.STUDENT.') {
  35. if (is_platform_id == 1)
  36. document.getElementById("id_platform_admin").style.display="none";
  37. $radios.filter("[value=0]").attr("checked", true);
  38. } else {
  39. if (is_platform_id == 1)
  40. document.getElementById("id_platform_admin").style.display="none";
  41. $radios.filter("[value=0]").attr("checked", true);
  42. }
  43. }
  44. function show_image(image,width,height) {
  45. width = parseInt(width) + 20;
  46. height = parseInt(height) + 20;
  47. window_x = window.open(image,\'windowX\',\'width=\'+ width + \', height=\'+ height + \' , resizable=0\');
  48. }
  49. function confirmation(name) {
  50. if (confirm("'.get_lang('AreYouSureToDeleteJS', '').' " + name + " ?")) {
  51. document.forms["profile"].submit();
  52. } else {
  53. return false;
  54. }
  55. }
  56. </script>';
  57. $htmlHeadXtra[] = api_get_css('components/cropper/dist/cropper.min.css');
  58. $htmlHeadXtra[] = api_get_js('components/cropper/dist/cropper.min.js');
  59. $libpath = api_get_path(LIBRARY_PATH);
  60. $noPHP_SELF = true;
  61. $tool_name = get_lang('ModifyUserInfo');
  62. $interbreadcrumb[] = array('url' => Container::getRouter()->generate('administration'), "name" => get_lang('PlatformAdmin'));
  63. $interbreadcrumb[] = array('url' => "user_list.php", "name" => get_lang('UserList'));
  64. $table_user = Database::get_main_table(TABLE_MAIN_USER);
  65. $table_admin = Database::get_main_table(TABLE_MAIN_ADMIN);
  66. $sql = "SELECT u.*, a.user_id AS is_admin FROM $table_user u
  67. LEFT JOIN $table_admin a ON a.user_id = u.id
  68. WHERE u.id = '".$user_id."'";
  69. $res = Database::query($sql);
  70. if (Database::num_rows($res) != 1) {
  71. header('Location: user_list.php');
  72. exit;
  73. }
  74. $user_data = Database::fetch_array($res, 'ASSOC');
  75. $user_data['platform_admin'] = is_null($user_data['is_admin']) ? 0 : 1;
  76. $user_data['send_mail'] = 0;
  77. $user_data['old_password'] = $user_data['password'];
  78. //Convert the registration date of the user
  79. $user_data['registration_date'] = api_get_local_time($user_data['registration_date']);
  80. unset($user_data['password']);
  81. if ($userGeolocalization) {
  82. $htmlHeadXtra[] = '<script>
  83. $(document).ready(function() {
  84. var address = "' . $user_data['address'] . '";
  85. initializeGeo(address, false);
  86. $("#geolocalization").on("click", function() {
  87. var address = $("#address").val();
  88. initializeGeo(address, false);
  89. return false;
  90. });
  91. $("#myLocation").on("click", function() {
  92. myLocation();
  93. return false;
  94. });
  95. $("#address").keypress(function (event) {
  96. if (event.which == 13) {
  97. $("#geolocalization").click();
  98. return false;
  99. }
  100. });
  101. });
  102. function myLocation() {
  103. if (navigator.geolocation) {
  104. var geoPosition = function(position) {
  105. var lat = position.coords.latitude;
  106. var lng = position.coords.longitude;
  107. var latLng = new google.maps.LatLng(lat, lng);
  108. initializeGeo(false, latLng)
  109. };
  110. var geoError = function(error) {
  111. alert("Geocode ' . get_lang('Error') . ': " + error);
  112. };
  113. var geoOptions = {
  114. enableHighAccuracy: true
  115. };
  116. navigator.geolocation.getCurrentPosition(geoPosition, geoError, geoOptions);
  117. }
  118. }
  119. function initializeGeo(address, latLng) {
  120. var geocoder = new google.maps.Geocoder();
  121. var latlng = new google.maps.LatLng(-34.397, 150.644);
  122. var myOptions = {
  123. zoom: 15,
  124. center: latlng,
  125. mapTypeControl: true,
  126. mapTypeControlOptions: {
  127. style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
  128. },
  129. navigationControl: true,
  130. mapTypeId: google.maps.MapTypeId.ROADMAP
  131. };
  132. map = new google.maps.Map(document.getElementById("map"), myOptions);
  133. var parameter = address ? { "address": address } : latLng ? { "latLng": latLng } : false;
  134. if (geocoder && parameter) {
  135. geocoder.geocode(parameter, function(results, status) {
  136. if (status == google.maps.GeocoderStatus.OK) {
  137. if (status != google.maps.GeocoderStatus.ZERO_RESULTS) {
  138. map.setCenter(results[0].geometry.location);
  139. if (!address) {
  140. $("#address").val(results[0].formatted_address);
  141. }
  142. var infowindow = new google.maps.InfoWindow({
  143. content: "<b>" + $("#address").val() + "</b>",
  144. size: new google.maps.Size(150, 50)
  145. });
  146. var marker = new google.maps.Marker({
  147. position: results[0].geometry.location,
  148. map: map,
  149. title: $("#address").val()
  150. });
  151. google.maps.event.addListener(marker, "click", function() {
  152. infowindow.open(map, marker);
  153. });
  154. } else {
  155. alert("' . get_lang("NotFound") . '");
  156. }
  157. } else {
  158. alert("Geocode ' . get_lang('Error') . ': " + status);
  159. }
  160. });
  161. }
  162. }
  163. </script>';
  164. }
  165. // Create the form
  166. $form = new FormValidator(
  167. 'user_edit',
  168. 'post',
  169. api_get_self().'?user_id='.$user_id,
  170. ''
  171. );
  172. $form->addElement('header', $tool_name);
  173. $form->addElement('hidden', 'user_id', $user_id);
  174. if (api_is_western_name_order()) {
  175. // Firstname
  176. $form->addElement('text', 'firstname', get_lang('FirstName'));
  177. $form->applyFilter('firstname', 'html_filter');
  178. $form->applyFilter('firstname', 'trim');
  179. $form->addRule('firstname', get_lang('ThisFieldIsRequired'), 'required');
  180. // Lastname
  181. $form->addElement('text', 'lastname', get_lang('LastName'));
  182. $form->applyFilter('lastname', 'html_filter');
  183. $form->applyFilter('lastname', 'trim');
  184. $form->addRule('lastname', get_lang('ThisFieldIsRequired'), 'required');
  185. } else {
  186. // Lastname
  187. $form->addElement('text', 'lastname', get_lang('LastName'));
  188. $form->applyFilter('lastname', 'html_filter');
  189. $form->applyFilter('lastname', 'trim');
  190. $form->addRule('lastname', get_lang('ThisFieldIsRequired'), 'required');
  191. // Firstname
  192. $form->addElement('text', 'firstname', get_lang('FirstName'));
  193. $form->applyFilter('firstname', 'html_filter');
  194. $form->applyFilter('firstname', 'trim');
  195. $form->addRule('firstname', get_lang('ThisFieldIsRequired'), 'required');
  196. }
  197. // Official code
  198. $form->addElement('text', 'official_code', get_lang('OfficialCode'), array('size' => '40'));
  199. $form->applyFilter('official_code', 'html_filter');
  200. $form->applyFilter('official_code', 'trim');
  201. // Email
  202. $form->addElement('text', 'email', get_lang('Email'));
  203. $form->addRule('email', get_lang('EmailWrong'), 'email');
  204. if (api_get_setting_in_list('registration.required_profile_fields', 'email')) {
  205. $form->addRule('email', get_lang('EmailWrong'), 'required');
  206. }
  207. if (api_get_setting('profile.login_is_email') == 'true') {
  208. $form->addRule('email', sprintf(get_lang('UsernameMaxXCharacters'), (string)USERNAME_MAX_LENGTH), 'maxlength', USERNAME_MAX_LENGTH);
  209. $form->addRule('email', get_lang('UserTaken'), 'username_available', $user_data['username']);
  210. }
  211. // OpenID
  212. /*if (api_get_setting('openid_authentication') == 'true') {
  213. $form->addElement('text', 'openid', get_lang('OpenIDURL'));
  214. }*/
  215. // Phone
  216. $form->addElement('text', 'phone', get_lang('PhoneNumber'));
  217. if ($userGeolocalization) {
  218. // Geolocation
  219. $form->addElement('text', 'address', get_lang('AddressField'), ['id' => 'address']);
  220. $form->addHtml('
  221. <div class="form-group">
  222. <label for="geolocalization" class="col-sm-2 control-label"></label>
  223. <div class="col-sm-8">
  224. <button class="null btn btn-default " id="geolocalization" name="geolocalization" type="submit"><em class="fa fa-map-marker"></em> '.get_lang('Geolocalization').'</button>
  225. <button class="null btn btn-default " id="myLocation" name="myLocation" type="submit"><em class="fa fa-crosshairs"></em> '.get_lang('MyLocation').'</button>
  226. </div>
  227. </div>
  228. ');
  229. $form->addHtml('
  230. <div class="form-group">
  231. <label for="map" class="col-sm-2 control-label">
  232. '.get_lang('Map').'
  233. </label>
  234. <div class="col-sm-8">
  235. <div name="map" id="map" style="width:100%; height:300px;">
  236. </div>
  237. </div>
  238. </div>
  239. ');
  240. }
  241. // Picture
  242. $form->addFile(
  243. 'picture',
  244. get_lang('AddImage'),
  245. array('id' => 'picture', 'class' => 'picture-form', 'crop_image' => true, 'crop_ratio' => '1 / 1')
  246. );
  247. $allowed_picture_types = api_get_supported_image_extensions(false);
  248. $form->addRule(
  249. 'picture',
  250. get_lang('OnlyImagesAllowed').' ('.implode(',', $allowed_picture_types).')',
  251. 'filetype',
  252. $allowed_picture_types
  253. );
  254. if (strlen($user_data['picture_uri']) > 0) {
  255. $form->addElement('checkbox', 'delete_picture', '', get_lang('DelImage'));
  256. }
  257. // Username
  258. if (api_get_setting('profile.login_is_email') != 'true') {
  259. $form->addElement('text', 'username', get_lang('LoginName'), array('maxlength' => USERNAME_MAX_LENGTH));
  260. $form->addRule('username', get_lang('ThisFieldIsRequired'), 'required');
  261. $form->addRule('username', sprintf(get_lang('UsernameMaxXCharacters'), (string)USERNAME_MAX_LENGTH), 'maxlength', USERNAME_MAX_LENGTH);
  262. $form->addRule('username', get_lang('OnlyLettersAndNumbersAllowed'), 'username');
  263. $form->addRule('username', get_lang('UserTaken'), 'username_available', $user_data['username']);
  264. }
  265. if (isset($extAuthSource) && !empty($extAuthSource) && count($extAuthSource) > 0) {
  266. $form->addLabel(
  267. get_lang('ExternalAuthentication'),
  268. $userInfo['auth_source']
  269. );
  270. }
  271. // Password
  272. $form->addElement('radio', 'reset_password', get_lang('Password'), get_lang('DontResetPassword'), 0);
  273. $nb_ext_auth_source_added = 0;
  274. if (isset($extAuthSource) && !empty($extAuthSource) && count($extAuthSource) > 0) {
  275. $auth_sources = array();
  276. foreach ($extAuthSource as $key => $info) {
  277. // @todo : make uniform external authentication configuration (ex : cas and external_login ldap)
  278. // Special case for CAS. CAS is activated from Chamilo > Administration > Configuration > CAS
  279. // extAuthSource always on for CAS even if not activated
  280. // same action for file user_add.php
  281. if (($key == CAS_AUTH_SOURCE && api_get_setting('cas_activate') === 'true') || ($key != CAS_AUTH_SOURCE)) {
  282. $auth_sources[$key] = $key;
  283. $nb_ext_auth_source_added++;
  284. }
  285. }
  286. if ($nb_ext_auth_source_added > 0) {
  287. // @todo check the radio button for external authentification and select the external authentication in the menu
  288. $group[] = $form->createElement('radio', 'reset_password', null, get_lang('ExternalAuthentication').' ', 3);
  289. $group[] = $form->createElement('select', 'auth_source', null, $auth_sources);
  290. $group[] = $form->createElement('static', '', '', '<br />');
  291. $form->addGroup($group, 'password', null, null, false);
  292. }
  293. }
  294. $form->addElement('radio', 'reset_password', null, get_lang('AutoGeneratePassword'), 1);
  295. $group = array();
  296. $group[] =$form->createElement('radio', 'reset_password', null, get_lang('EnterPassword'), 2);
  297. $group[] = $form->createElement(
  298. 'password',
  299. 'password',
  300. null,
  301. array('onkeydown' => 'javascript: password_switch_radio_button();')
  302. );
  303. $form->addGroup($group, 'password', null, null, false);
  304. // Status
  305. $status = array();
  306. $status[COURSEMANAGER] = get_lang('Teacher');
  307. $status[STUDENT] = get_lang('Learner');
  308. $status[DRH] = get_lang('Drh');
  309. $status[SESSIONADMIN] = get_lang('SessionsAdmin');
  310. $status[STUDENT_BOSS] = get_lang('RoleStudentBoss');
  311. $status[INVITEE] = get_lang('Invitee');
  312. $form->addElement(
  313. 'select',
  314. 'status',
  315. get_lang('Profile'),
  316. $status,
  317. array(
  318. 'id' => 'status_select',
  319. 'onchange' => 'javascript: display_drh_list();'
  320. )
  321. );
  322. $display = isset($user_data['status']) && ($user_data['status'] == STUDENT || (isset($_POST['status']) && $_POST['status'] == STUDENT)) ? 'block' : 'none';
  323. // Platform admin
  324. if (api_is_platform_admin()) {
  325. $group = array();
  326. $group[] =$form->createElement('radio', 'platform_admin', null, get_lang('Yes'), 1);
  327. $group[] =$form->createElement('radio', 'platform_admin', null, get_lang('No'), 0);
  328. $user_data['status'] == 1 ? $display = 'block':$display = 'none';
  329. $form->addElement('html', '<div id="id_platform_admin" style="display:'.$display.'">');
  330. $form->addGroup($group, 'admin', get_lang('PlatformAdmin'), null, false);
  331. $form->addElement('html', '</div>');
  332. }
  333. // Language
  334. $form->addElement('select_language', 'language', get_lang('Language'));
  335. // Send email
  336. $group = array();
  337. $group[] = $form->createElement('radio', 'send_mail', null, get_lang('Yes'), 1);
  338. $group[] = $form->createElement('radio', 'send_mail', null, get_lang('No'), 0);
  339. $form->addGroup($group, 'mail', get_lang('SendMailToNewUser'), null, false);
  340. // Registration User and Date
  341. $creatorInfo = api_get_user_info($user_data['creator_id']);
  342. $date = sprintf(get_lang('CreatedByXYOnZ'), 'user_information.php?user_id='.$user_data['creator_id'], $creatorInfo['username'], $user_data['registration_date']);
  343. $form->addElement('label', get_lang('RegistrationDate'), $date);
  344. if (!$user_data['platform_admin']) {
  345. // Expiration Date
  346. $form->addElement('radio', 'radio_expiration_date', get_lang('ExpirationDate'), get_lang('NeverExpires'), 0);
  347. $group = array ();
  348. $group[] = $form->createElement('radio', 'radio_expiration_date', null, get_lang('Enabled'), 1);
  349. $group[] = $form->createElement('DateTimePicker', 'expiration_date', null, array('onchange' => 'javascript: enable_expiration_date();'));
  350. $form->addGroup($group, 'max_member_group', null, null, false);
  351. // Active account or inactive account
  352. $form->addElement('radio', 'active', get_lang('ActiveAccount'), get_lang('Active'), 1);
  353. $form->addElement('radio', 'active', '', get_lang('Inactive'), 0);
  354. }
  355. $studentBossList = UserManager::getStudentBossList($user_data['user_id']);
  356. $conditions = ['status' => STUDENT_BOSS];
  357. $studentBoss = UserManager::get_user_list($conditions);
  358. $studentBossToSelect = [];
  359. if ($studentBoss) {
  360. foreach ($studentBoss as $bossId => $userData) {
  361. $bossInfo = api_get_user_info($userData['user_id']);
  362. $studentBossToSelect[$bossInfo['user_id']] = $bossInfo['complete_name_with_username'];
  363. }
  364. }
  365. if ($studentBossList) {
  366. $studentBossList = array_column($studentBossList, 'boss_id');
  367. }
  368. $user_data['student_boss'] = array_values($studentBossList);
  369. $form->addElement('advmultiselect', 'student_boss', get_lang('StudentBoss'), $studentBossToSelect);
  370. // EXTRA FIELDS
  371. $extraField = new ExtraField('user');
  372. $returnParams = $extraField->addElements($form, $user_data['user_id']);
  373. $jquery_ready_content = $returnParams['jquery_ready_content'];
  374. // the $jquery_ready_content variable collects all functions that will be load in the $(document).ready javascript function
  375. $htmlHeadXtra[] ='<script>
  376. $(document).ready(function(){
  377. '.$jquery_ready_content.'
  378. });
  379. </script>';
  380. // Submit button
  381. $form->addButtonSave(get_lang('Save'));
  382. // Set default values
  383. $user_data['reset_password'] = 0;
  384. $expiration_date = $user_data['expiration_date'];
  385. if (empty($expiration_date)) {
  386. $user_data['radio_expiration_date'] = 0;
  387. $user_data['expiration_date'] = api_get_local_time();
  388. } else {
  389. $user_data['radio_expiration_date'] = 1;
  390. $user_data['expiration_date'] = api_get_local_time($expiration_date);
  391. }
  392. $form->setDefaults($user_data);
  393. $error_drh = false;
  394. // Validate form
  395. if ($form->validate()) {
  396. $user = $form->getSubmitValues(1);
  397. $reset_password = intval($user['reset_password']);
  398. if ($reset_password == 2 && empty($user['password'])) {
  399. Display::addFlash(Display::return_message(get_lang('PasswordIsTooShort')));
  400. header('Location: '.api_get_self().'?user_id='.$user_id);
  401. exit();
  402. }
  403. $is_user_subscribed_in_course = CourseManager::is_user_subscribed_in_course($user['user_id']);
  404. if ($user['status'] == DRH && $is_user_subscribed_in_course) {
  405. $error_drh = true;
  406. } else {
  407. $picture_element = $form->getElement('picture');
  408. $picture = $picture_element->getValue();
  409. $picture_uri = $user_data['picture_uri'];
  410. if (isset($user['delete_picture']) && $user['delete_picture']) {
  411. $picture_uri = UserManager::delete_user_picture($user_id);
  412. } elseif (!empty($picture['name'])) {
  413. $picture_uri = UserManager::update_user_picture(
  414. $user_id,
  415. $_FILES['picture']['name'],
  416. $_FILES['picture']['tmp_name'],
  417. $user['picture_crop_result']
  418. );
  419. }
  420. $lastname = $user['lastname'];
  421. $firstname = $user['firstname'];
  422. $password = $user['password'];
  423. $auth_source = isset($user['auth_source']) ? $user['auth_source'] : $userInfo['auth_source'];
  424. $official_code = $user['official_code'];
  425. $email = $user['email'];
  426. $phone = $user['phone'];
  427. $username = isset($user['username']) ? $user['username'] : $userInfo['username'];
  428. $status = intval($user['status']);
  429. $platform_admin = intval($user['platform_admin']);
  430. $send_mail = intval($user['send_mail']);
  431. $reset_password = intval($user['reset_password']);
  432. $hr_dept_id = isset($user['hr_dept_id']) ? intval($user['hr_dept_id']) : null;
  433. $language = $user['language'];
  434. if ($user['radio_expiration_date'] == '1' && !$user_data['platform_admin']) {
  435. $expiration_date = $user['expiration_date'];
  436. } else {
  437. $expiration_date = null;
  438. }
  439. $active = $user_data['platform_admin'] ? 1 : intval($user['active']);
  440. //If the user is set to admin the status will be overwrite by COURSEMANAGER = 1
  441. if ($platform_admin == 1) {
  442. $status = COURSEMANAGER;
  443. }
  444. if (api_get_setting('profile.login_is_email') == 'true') {
  445. $username = $email;
  446. }
  447. UserManager::update_user(
  448. $user_id,
  449. $firstname,
  450. $lastname,
  451. $username,
  452. $password,
  453. $auth_source,
  454. $email,
  455. $status,
  456. $official_code,
  457. $phone,
  458. $picture_uri,
  459. $expiration_date,
  460. $active,
  461. null,
  462. $hr_dept_id,
  463. null,
  464. $language,
  465. null,
  466. $send_mail,
  467. $reset_password,
  468. $user['address']
  469. );
  470. if (isset($user['student_boss'])) {
  471. UserManager::subscribeUserToBossList($user_id, $user['student_boss']);
  472. }
  473. /*if (api_get_setting('openid_authentication') == 'true' && !empty($user['openid'])) {
  474. $up = UserManager::update_openid($user_id, $user['openid']);
  475. }*/
  476. $currentUserId = api_get_user_id();
  477. $userObj = api_get_user_entity($user_id);
  478. UserManager::add_user_as_admin($userObj);
  479. if ($user_id != $currentUserId) {
  480. if ($platform_admin == 1) {
  481. $userObj = api_get_user_entity($user_id);
  482. UserManager::add_user_as_admin($userObj);
  483. } else {
  484. UserManager::remove_user_admin($user_id);
  485. }
  486. }
  487. $extraFieldValue = new ExtraFieldValue('user');
  488. $extraFieldValue->saveFieldValues($user);
  489. $tok = Security::get_token();
  490. Display::addFlash(Display::return_message(get_lang('UserUpdated')));
  491. header('Location: user_list.php?sec_token='.$tok);
  492. exit();
  493. }
  494. }
  495. if ($error_drh) {
  496. Display::addFlash(Display::return_message(get_lang('StatusCanNotBeChangedToHumanResourcesManager'), 'error'));
  497. }
  498. $content = null;
  499. $bigImage = UserManager::getUserPicture($user_id, USER_IMAGE_SIZE_BIG);
  500. $normalImage = UserManager::getUserPicture($user_id, USER_IMAGE_SIZE_ORIGINAL);
  501. $content .= '<div class="row">';
  502. $content .= '<div class="col-md-10">';
  503. // Display form
  504. $content .= $form->returnForm();
  505. $content .= '</div>';
  506. $content .= '<div class="col-md-2">';
  507. $content .= '<a class="thumbnail expand-image" href="'.$bigImage.'" /><img src="'.$normalImage.'"></a>';
  508. $content .= '</div>';
  509. echo $content;