Adding api_get_group_id() (Not social network group)

skala
Julio Montoya 15 years ago
parent 503f3885b6
commit 44cb9081c7
  1. 13
      main/inc/lib/main_api.lib.php

@ -1436,13 +1436,22 @@ class api_failure {
/* CONFIGURATION SETTINGS */ /* CONFIGURATION SETTINGS */
/** /**
* Gets the current Chamilo (not PHP/cookie) session ID, if active * Gets the current Chamilo (not PHP/cookie) session ID
* @return int O if no active session, the session ID otherwise * @return int O if no active session, the session ID otherwise
*/ */
function api_get_session_id() { function api_get_session_id() {
return empty($_SESSION['id_session']) ? 0 : (int)$_SESSION['id_session']; return empty($_SESSION['id_session']) ? 0 : intval($_SESSION['id_session']);
} }
/**
* Gets the current Chamilo (not social network) group ID
* @return int O if no active session, the session ID otherwise
*/
function api_get_group_id() {
return empty($_SESSION['_gid']) ? 0 : intval($_SESSION['_gid']);
}
/** /**
* Gets the current or given session name * Gets the current or given session name
* @param int Session ID (optional) * @param int Session ID (optional)

Loading…
Cancel
Save