Remove deprecated functions

1.10.x
Julio Montoya 10 years ago
parent 98ae4567b2
commit 8261c69bbb
  1. 2
      main/admin/configure_inscription.php
  2. 2
      main/admin/skill_badge_create.php
  3. 2
      main/admin/skill_badge_list.php
  4. 24
      main/auth/cas/authcas.php
  5. 2
      main/auth/inscription.php
  6. 20
      main/auth/shibboleth/app/shibboleth.class.php
  7. 6
      main/auth/shibboleth/db/shibboleth_upgrade.class.php
  8. 2
      main/exercice/exercise.class.php
  9. 2
      main/forum/forumfunction.inc.php
  10. 2
      main/forum/viewforum.php
  11. 176
      main/inc/lib/api.lib.php
  12. 2
      main/inc/lib/banner.lib.php
  13. 8
      main/inc/lib/course_request.lib.php
  14. 2
      main/inc/lib/sessionmanager.lib.php
  15. 2
      plugin/buycourses/src/inscription.php
  16. 2
      plugin/clockworksms/lib/clockworksms.lib.php
  17. 7
      plugin/search_course/lib/search_course_widget.class.php
  18. 19
      tests/main/inc/lib/main_api.lib.test.php

@ -59,7 +59,7 @@ if (!empty($_SESSION['user_language_choice'])) {
} elseif (!empty($_SESSION['_user']['language'])) {
$lang = $_SESSION['_user']['language'];
} else {
$lang = get_setting('platformLanguage');
$lang = api_get_setting('platformLanguage');
}
// ----- Ensuring availability of main files in the corresponding language -----

@ -95,7 +95,7 @@ $interbreadcrumb = array(
);
$tpl = new Template(get_lang('CreateBadge'));
$tpl->assign('platformAdminEmail', get_setting('emailAdministrator'));
$tpl->assign('platformAdminEmail', api_get_setting('emailAdministrator'));
$tpl->assign('skill', $skill);
$contentTemplate = $tpl->get_template('skill/badge_create.tpl');

@ -39,7 +39,7 @@ $interbreadcrumb = array(
$tpl = new Template(get_lang('Skills'));
$tpl->assign('errorMessage', $errorMessage);
$tpl->assign('platformAdminEmail', get_setting('emailAdministrator'));
$tpl->assign('platformAdminEmail', api_get_setting('emailAdministrator'));
$tpl->assign('skills', $skills);
$contentTemplate = $tpl->get_template('skill/badge_list.tpl');

@ -16,7 +16,7 @@ require_once(api_get_path(SYS_PATH).'main/auth/external_login/functions.inc.php'
*
**/
function cas_configured() {
global $cas_auth_ver, $cas_auth_server, $cas_auth_port, $cas_auth_uri;
global $cas_auth_ver, $cas_auth_server, $cas_auth_port, $cas_auth_uri;
$res = false;
if (!empty($cas_auth_ver) && !empty($cas_auth_server) && !empty($cas_auth_port)) {
$res = true;
@ -33,7 +33,7 @@ function cas_configured() {
function cas_is_authenticated()
{
global $cas_auth_ver, $cas_auth_server, $cas_auth_port, $cas_auth_uri;
global $cas_auth_ver, $cas_auth_server, $cas_auth_port, $cas_auth_uri;
global $PHPCAS_CLIENT;
global $logout;
@ -42,13 +42,13 @@ function cas_is_authenticated()
}
if (!is_object($PHPCAS_CLIENT) )
if (!is_object($PHPCAS_CLIENT) )
{
phpCAS::client($cas_auth_ver,$cas_auth_server,$cas_auth_port,$cas_auth_uri);
phpCAS::setNoCasServerValidation();
}
$auth = phpCAS::checkAuthentication();
$auth = phpCAS::checkAuthentication();
if ($auth) {
$login= trim(phpCAS::getUser());
/*
@ -85,7 +85,7 @@ function cas_is_authenticated()
if (!$logout){
// get user info from username
$tab_user_info = UserManager::get_user_info($login);
// user found in the chamilo database
if (is_array($tab_user_info)) {
// if option is on we update user automatically from ldap server
@ -105,13 +105,13 @@ function cas_is_authenticated()
// if option is on we can ADD user automatically from ldap server or by modify own profil
$user_added = false;
switch (api_get_setting("cas_add_user_activate")) {
case PLATFORM_AUTH_SOURCE :
case PLATFORM_AUTH_SOURCE :
// user will have to modify firstname, lastname, email in chamilo profil edit
$userdata = get_lang("EditInProfil");
UserManager::create_user($userdata, $userdata, '5', $userdata, $login, 'casplaceholder', '','','','',CAS_AUTH_SOURCE);
$user_added = $login;
break;
case LDAP_AUTH_SOURCE :
case LDAP_AUTH_SOURCE :
// user info are read from ldap connexion
// get user info from ldap server
// user has already been authenticated by CAS
@ -137,8 +137,8 @@ function cas_is_authenticated()
// "FROM $user_table ".
// "WHERE username = '$login' ";
//
// $result = api_sql_query($sql,__FILE__,__LINE__);
// if(mysql_num_rows($result) == 0) {
// $result = Database::query($sql,__FILE__,__LINE__);
// if(mysql_num_rows($result) == 0) {
// require_once(api_get_path(SYS_PATH).'main/inc/lib/usermanager.lib.php');
// $rnumber=rand(0,256000);
// UserManager::create_user($firstName, $lastName, $status, $email, $login, md5('casplaceholder'.$rnumber), $official_code='',$language='',$phone='',$picture_uri='',$auth_source = PLATFORM_AUTH_SOURCE);
@ -153,8 +153,8 @@ function cas_is_authenticated()
// }
return $login;
}
else
{
else
{
return false;
}
}

@ -30,7 +30,7 @@ if (!empty($_SESSION['user_language_choice'])) {
} elseif (!empty($_SESSION['_user']['language'])) {
$user_selected_language = $_SESSION['_user']['language'];
} else {
$user_selected_language = get_setting('platformLanguage');
$user_selected_language = api_get_setting('platformLanguage');
}
$form = new FormValidator('registration');

@ -98,7 +98,7 @@ class Shibboleth
/*
* Tests if the user tried to login directly in a protected course before to come here
* (this variable could be set in the modified code of /chamilo/inc/lib/main_api.lib.php)
*
*
* Note:
* this part was added to give the possibility to access Chamilo directly on a course URL from a link diplayed in a portal.
* This is not a direct Shibboleth related functionnality, but this could be used in a shibbolethized
@ -109,7 +109,7 @@ class Shibboleth
*/
}
if ($url) {
//needed to log the user in his courses. Normally it is done by visiting /chamilo/index.php
//needed to log the user in his courses. Normally it is done by visiting /chamilo/index.php
// $include_path = api_get_path(INCLUDE_PATH);
// require("$include_path/local.inc.php");
//
@ -160,7 +160,7 @@ class Shibboleth
/**
* Infer the rights/status the user can have in Chamilo based on his affiliation attribute
*
* @param ShibbolethUser $user
* @param ShibbolethUser $user
* @return The Chamilo user status, one of TEACHER, STUDENT or UNKNOWN
*/
public static function infer_user_status($user)
@ -200,9 +200,9 @@ class Shibboleth
/**
* Return true if the user can ask for a greater status than student.
* This happens for staff members.
*
*
* @param ShibbolethUser $user
* @return boolean
* @return boolean
*/
public static function infer_status_request($user)
{
@ -242,9 +242,9 @@ class Shibboleth
$signagure = <<<EOT
_________________________
$firstname $lastname
$email
_________________________
$firstname $lastname
$email
$status
EOT;
@ -257,9 +257,9 @@ EOT;
$header .= "Cc: $shibb_admin_email";
}
$administrator_email = get_setting('emailAdministrator');
$administrator_email = api_get_setting('emailAdministrator');
$result = mail($administrator_email, $subject, $message);
return (bool) $result;
}
}
}

@ -64,7 +64,7 @@ class ShibbolethUpgrade
}
public static function create_shibb_persistent_id_field_if_missing()
{
{
$db_name = Database :: get_main_database();
$sql = "SELECT * FROM $db_name.user LIMIT 1";
@ -78,8 +78,8 @@ class ShibbolethUpgrade
}
$sql = "ALTER table $db_name.user ADD COLUMN shibb_persistent_id varchar(255) NULL DEFAULT NULL;";
$result = api_sql_query($sql);
$result = Database::query($sql);
return (bool) $result;
}
}
}

@ -3150,7 +3150,7 @@ class Exercise
// Save into db
/* $sql = "INSERT INTO $tbl_track_e_hotspot (hotspot_user_id, hotspot_course_code, hotspot_exe_id, hotspot_question_id, hotspot_answer_id, hotspot_correct, hotspot_coordinate )
VALUES ('".Database::escape_string($_user['user_id'])."', '".Database::escape_string($_course['id'])."', '".Database::escape_string($exeId)."', '".Database::escape_string($questionId)."', '".Database::escape_string($answerId)."', '".Database::escape_string($studentChoice)."', '".Database::escape_string($user_array)."')";
$result = api_sql_query($sql,__FILE__,__LINE__);*/
$result = Database::query($sql,__FILE__,__LINE__);*/
$user_answer = $user_array;
// we compare only the delineation not the other points

@ -4255,7 +4255,7 @@ function get_forums_of_group($group_id)
// Finding the last post information (last_post_id, last_poster_id, last_post_date, last_poster_name, last_poster_lastname, last_poster_firstname).
if (!empty($forum_list)) {
foreach ($forum_list as $key => $value) {
$last_post_info_of_forum = get_last_post_information($key, is_allowed_to_edit());
$last_post_info_of_forum = get_last_post_information($key, api_is_allowed_to_edit());
$forum_list[$key]['last_post_id'] = $last_post_info_of_forum['last_post_id'];
$forum_list[$key]['last_poster_id'] = $last_post_info_of_forum['last_poster_id'];
$forum_list[$key]['last_post_date'] = $last_post_info_of_forum['last_post_date'];

@ -381,7 +381,7 @@ if (is_array($threads)) {
echo '<td>'.Display::tag('span', api_get_person_name($row['firstname'], $row['lastname']), array("title"=>api_htmlentities($poster_username, ENT_QUOTES))).'</td>';
}
$last_post_info = get_last_post_by_thread($row['c_id'], $row['thread_id'], $row['forum_id'], is_allowed_to_edit());
$last_post_info = get_last_post_by_thread($row['c_id'], $row['thread_id'], $row['forum_id'], api_is_allowed_to_edit());
$last_post = null;
if ($last_post_info) {

@ -4326,14 +4326,6 @@ function api_string_2_boolean($string) {
return false;
}
/**
* Too keep BC
* @deprecated use api_string_2_boolean
*/
function string_2_boolean($string) {
return api_string_2_boolean($string);
}
/**
* Determines the number of plugins installed for a given location
*/
@ -4342,21 +4334,6 @@ function api_number_of_plugins($location) {
return isset($_plugins[$location]) && is_array($_plugins[$location]) ? count($_plugins[$location]) : 0;
}
/**
* Including the necessary plugins.
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @deprecated use AppPlugin::get_all_plugin_contents_by_region function
*/
function api_plugin($location) {
global $_plugins;
if (isset($_plugins[$location]) && is_array($_plugins[$location])) {
foreach ($_plugins[$location] as $this_plugin) {
include api_get_path(SYS_PLUGIN_PATH)."$this_plugin/index.php";
}
}
return false;
}
/**
* Checks to see wether a certain plugin is installed.
* @return boolean true if the plugin is installed, false otherwise.
@ -6018,159 +5995,6 @@ function shorten($input, $length = 15, $encoding = null) {
return api_trunc_str($input, $length, '...', false, $encoding);
}
/**
* DEPRECATED, use api_get_setting instead
*/
function get_setting($variable, $key = NULL) {
global $_setting;
return api_get_setting($variable, $key);
}
/**
* deprecated: use api_is_allowed_to_edit() instead
*/
function is_allowed_to_edit() {
return api_is_allowed_to_edit();
}
/**
* deprecated: 19-SEP-2009: Use api_get_path(TO_SYS, $url) instead.
*/
function api_url_to_local_path($url) {
return api_get_path(TO_SYS, $url);
}
/**
* @deprecated 27-SEP-2009: Use Database::store_result($result) instead.
*/
function api_store_result($result) {
return Database::store_result($result);
}
/**
* @deprecated 28-SEP-2009: Use Database::query($query, $file, $line) instead.
*/
function api_sql_query($query, $file = '', $line = 0) {
return Database::query($query, $file, $line);
}
/**
* @deprecated 25-JAN-2010: See api_mail() and api_mail_html(), mail.lib.inc.php
*
* Send an email.
*
* Wrapper function for the standard php mail() function. Change this function
* to your needs. The parameters must follow the same rules as the standard php
* mail() function. Please look at the documentation on http://php.net/manual/en/function.mail.php
* @param string $to
* @param string $subject
* @param string $message
* @param string $additional_headers
* @param string $additionalParameters
* @author Ivan Tcholakov, 04-OCT-2009, a reworked version of this function.
* @link http://www.dokeos.com/forum/viewtopic.php?t=15557
*/
function api_send_mail($to, $subject, $message, $additional_headers = null, $additionalParameters = array())
{
if (empty($platform_email['SMTP_FROM_NAME'])) {
$platform_email['SMTP_FROM_NAME'] = api_get_person_name(
api_get_setting('administratorName'),
api_get_setting('administratorSurname'),
null,
PERSON_NAME_EMAIL_ADDRESS
);
}
if (empty($platform_email['SMTP_FROM_EMAIL'])) {
$platform_email['SMTP_FROM_EMAIL'] = api_get_setting('emailAdministrator');
}
$matches = array();
if (preg_match('/([^<]*)<(.+)>/si', $to, $matches)) {
$recipient_name = trim($matches[1]);
$recipient_email = trim($matches[2]);
} else {
$recipient_name = '';
$recipient_email = trim($to);
}
$sender_name = '';
$sender_email = '';
$extra_headers = $additional_headers;
// Regular expression to test for valid email address.
// This should actually be revised to use the complete RFC3696 description.
// http://tools.ietf.org/html/rfc3696#section-3
//$regexp = "^[0-9a-z_\.+-]+@(([0-9]{1,3}\.){3}[0-9]{1,3}|([0-9a-z][0-9a-z-]*[0-9a-z]\.)+[a-z]{2,3})$"; // Deprecated, 13-OCT-2010.
$mail = new PHPMailer();
$mail->CharSet = $platform_email['SMTP_CHARSET'];
$mail->Mailer = $platform_email['SMTP_MAILER'];
$mail->Host = $platform_email['SMTP_HOST'];
$mail->Port = $platform_email['SMTP_PORT'];
if ($platform_email['SMTP_AUTH']) {
$mail->SMTPAuth = 1;
$mail->Username = $platform_email['SMTP_USER'];
$mail->Password = $platform_email['SMTP_PASS'];
}
$mail->Priority = 3; // 5 = low, 1 = high
$mail->AddCustomHeader('Errors-To: '.$platform_email['SMTP_FROM_EMAIL']);
$mail->IsHTML(0);
$mail->SMTPKeepAlive = true;
// Attachments.
// $mail->AddAttachment($path);
// $mail->AddAttachment($path, $filename);
if ($sender_email != '') {
$mail->From = $sender_email;
$mail->Sender = $sender_email;
} else {
$mail->From = $platform_email['SMTP_FROM_EMAIL'];
$mail->Sender = $platform_email['SMTP_FROM_EMAIL'];
}
if ($sender_name != '') {
$mail->FromName = $sender_name;
} else {
$mail->FromName = $platform_email['SMTP_FROM_NAME'];
}
$mail->Subject = $subject;
$mail->Body = $message;
// Only valid address are to be accepted.
if (api_valid_email($recipient_email)) {
$mail->AddAddress($recipient_email, $recipient_name);
}
if ($extra_headers != '') {
$mail->AddCustomHeader($extra_headers);
}
// Send mail.
if (!$mail->Send()) {
return 0;
}
$plugin = new AppPlugin();
$installedPluginsList = $plugin->getInstalledPluginListObject();
foreach ($installedPluginsList as $installedPlugin) {
if ($installedPlugin->isMailPlugin and array_key_exists("smsType", $additionalParameters)) {
$className = str_replace("Plugin", "", get_class($installedPlugin));
$smsObject = new $className;
$smsObject->send($additionalParameters);
}
}
// Clear all the addresses.
$mail->ClearAddresses();
return 1;
}
/* END OF DEPRECATED FUNCTIONS SECTION */
/**
* Function used to protect a "global" admin script.

@ -378,7 +378,7 @@ function return_menu() {
} elseif (!empty($_SESSION['_user']['language'])) {
$lang = $_SESSION['_user']['language'];
} else {
$lang = get_setting('platformLanguage');
$lang = api_get_setting('platformLanguage');
}
//Preparing home folder for multiple urls

@ -160,7 +160,7 @@ class CourseRequestManager
$sender_name_teacher = api_get_person_name($user_info['firstname'], $user_info['lastname'], null, PERSON_NAME_EMAIL_ADDRESS);
$sender_email_teacher = $user_info['mail'];
$recipient_name_admin = api_get_person_name(api_get_setting('administratorName'), api_get_setting('administratorSurname'), null, PERSON_NAME_EMAIL_ADDRESS);
$recipient_email_admin = get_setting('emailAdministrator');
$recipient_email_admin = api_get_setting('emailAdministrator');
$userInfo = api_get_user_info($user_id);
@ -477,7 +477,7 @@ class CourseRequestManager
$email_body .= "\n".get_lang('CourseRequestLegalNote', null, $email_language)."\n";
$sender_name = api_get_person_name(api_get_setting('administratorName'), api_get_setting('administratorSurname'), null, PERSON_NAME_EMAIL_ADDRESS);
$sender_email = get_setting('emailAdministrator');
$sender_email = api_get_setting('emailAdministrator');
$recipient_name = api_get_person_name($user_info['firstname'], $user_info['lastname'], null, PERSON_NAME_EMAIL_ADDRESS);
$recipient_email = $user_info['mail'];
$extra_headers = 'Bcc: '.$sender_email;
@ -555,7 +555,7 @@ class CourseRequestManager
$email_body .= "\n".get_lang('CourseRequestLegalNote', null, $email_language)."\n";
$sender_name = api_get_person_name(api_get_setting('administratorName'), api_get_setting('administratorSurname'), null, PERSON_NAME_EMAIL_ADDRESS);
$sender_email = get_setting('emailAdministrator');
$sender_email = api_get_setting('emailAdministrator');
$recipient_name = api_get_person_name($user_info['firstname'], $user_info['lastname'], null, PERSON_NAME_EMAIL_ADDRESS);
$recipient_email = $user_info['mail'];
$extra_headers = 'Bcc: '.$sender_email;
@ -632,7 +632,7 @@ class CourseRequestManager
$email_body .= "\n".get_lang('CourseRequestLegalNote', null, $email_language)."\n";
$sender_name = api_get_person_name(api_get_setting('administratorName'), api_get_setting('administratorSurname'), null, PERSON_NAME_EMAIL_ADDRESS);
$sender_email = get_setting('emailAdministrator');
$sender_email = api_get_setting('emailAdministrator');
$recipient_name = api_get_person_name($user_info['firstname'], $user_info['lastname'], null, PERSON_NAME_EMAIL_ADDRESS);
$recipient_email = $user_info['mail'];
$extra_headers = 'Bcc: '.$sender_email;

@ -1604,7 +1604,7 @@ class SessionManager
if (is_array($user_list) && count($user_list) > 0) {
foreach ($user_list as $user_id) {
if (!in_array($user_id, $existingUsers)) {
$subject = '[' . get_setting('siteName') . '] ' . get_lang('YourReg') . ' ' . get_setting('siteName');
$subject = '[' . api_get_setting('siteName') . '] ' . get_lang('YourReg') . ' ' . api_get_setting('siteName');
$user_info = api_get_user_info($user_id);
$content = get_lang('Dear') . " " . stripslashes($user_info['complete_name']) . ",\n\n" . sprintf(get_lang('YouAreRegisterToSessionX'), $session_name) . " \n\n" . get_lang('Address') . " " . get_setting('siteName') . " " . get_lang('Is') . " : " . api_get_path(WEB_PATH) . "\n\n" . get_lang('Problem') . "\n\n" . get_lang('SignatureFormula') . ",\n\n" . get_setting('administratorName') . " " . get_setting('administratorSurname') . "\n" . get_lang('Manager') . " " . get_setting('siteName') . "\nT. " . get_setting('administratorTelephone') . "\n" . get_lang('Email') . " : " . get_setting('emailAdministrator');
MessageManager::send_message(

@ -19,7 +19,7 @@ if (!empty($_SESSION['user_language_choice'])) {
} elseif (!empty($_SESSION['_user']['language'])) {
$user_selected_language = $_SESSION['_user']['language'];
} else {
$user_selected_language = get_setting('platformLanguage');
$user_selected_language = api_get_setting('platformLanguage');
}
$form = new FormValidator('registration');

@ -49,7 +49,7 @@ class Clockworksms implements SmsPluginLibraryInterface
null,
PERSON_NAME_EMAIL_ADDRESS
);
$email_form = get_setting('emailAdministrator');
$email_form = api_get_setting('emailAdministrator');
$emailsubject = 'Clockworksms error';
$emailbody = 'Key cannot be blank';
$sender_name = $recipient_name;

@ -354,9 +354,8 @@ EOT;
EOT;
$result = array();
$resultset = api_sql_query($sql, __FILE__, __LINE__);
while ($row = Database::fetch_array($resultset))
{
$resultset = Database::query($sql);
while ($row = Database::fetch_array($resultset)) {
$code = $row['code'];
$result[$code] = array(
'code' => $code,
@ -397,7 +396,7 @@ EOT;
AND course_rel_user.user_id = $user_id
ORDER BY course_rel_user.sort ASC";
$result = array();
$resultset = api_sql_query($sql_select_courses);
$resultset = Database::query($sql_select_courses);
while ($row = Database::fetch_array($resultset)) {
$code = $row['k'];
$result[$code] = array(

@ -494,16 +494,6 @@ class TestMainApi extends UnitTestCase {
$this->assertTrue($cssdir);
}
function testApiSendMail(){
$to= 'chamilotest@beeznest.com';
$subject='Hello';
$message='test message';
$res=api_send_mail($to, $subject, $message, $additional_headers = null, $additional_parameters = null);
$this->assertTrue(is_numeric($res));
//var_dump($res);
//var_dump($send_mail);
}
function testApiMaxSortValue(){
$user_course_category=1;
$user_id =1;
@ -527,15 +517,6 @@ class TestMainApi extends UnitTestCase {
$this->assertTrue($_plugins[$location]);
}
function testApiPlugin(){
global $_plugins;
$location=2;
$_plugins[$location]=1;
$res1 = api_plugin($location);
$this->assertFalse($res1);
$this->assertTrue($_plugins[$location]);
}
function testApiIsPluginInstalled(){
$plugin_name = false;
$plugin_list = true;

Loading…
Cancel
Save