|
|
|
@ -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. |
|
|
|
|