X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Flibs%2Fyoomedia_functions.php;h=213b7fab04e99d8e043d950e5faca774a062fee2;hb=9a672c035f9bfb10aca00be32e1125973e624a58;hp=dad248da2a846258012df0f2d2b3f69de0b59e93;hpb=2df9f7a53f8b1dd5164f87824a324ccb3b6634cb;p=mailer.git diff --git a/inc/libs/yoomedia_functions.php b/inc/libs/yoomedia_functions.php index dad248da2a..213b7fab04 100644 --- a/inc/libs/yoomedia_functions.php +++ b/inc/libs/yoomedia_functions.php @@ -41,12 +41,12 @@ if (!defined('__SECURITY')) { } // END - if // Queries the given Yoo!Media API 2.0 script -function YOOMEDIA_QUERY_API ($script, $countQuery = true) { +function YOOMEDIA_QUERY_API ($script, $countQuery = TRUE) { // Init response array $response = array(); // Enougth queries left? - if ((getConfig('yoomedia_requests_remain') > 0) || ($countQuery === false)) { + if ((getConfig('yoomedia_requests_remain') > 0) || ($countQuery === FALSE)) { // Prepare request array $requestData = array( 'id' => getConfig('yoomedia_id'), @@ -60,7 +60,7 @@ function YOOMEDIA_QUERY_API ($script, $countQuery = true) { ); // Run the query - $response = sendGetRequest('http://www.yoomedia.de/interface_2.0/' . $script, $requestData, true); + $response = sendGetRequest('http://www.yoomedia.de/interface_2.0/' . $script, $requestData, TRUE); // Convert from ISO to UTF-8 only if count is > 3 because <= 3 means timeout if (count($response) > 3) { @@ -72,7 +72,7 @@ function YOOMEDIA_QUERY_API ($script, $countQuery = true) { } // END - if // Shall we count the query as used? - if ($countQuery === true) { + if ($countQuery === TRUE) { // Then update the config! updateConfiguration('yoomedia_requests_remain', 1, '-'); } // END - if @@ -87,7 +87,7 @@ function YOOMEDIA_TEST_CONFIG ($data) { // Is this admin? if (!isAdmin()) { // No admin! - return false; + return FALSE; } // END - if // Remove 'ok' @@ -105,7 +105,7 @@ function YOOMEDIA_TEST_CONFIG ($data) { // Query the API with a test request without couting it // If zero reply comes back the data is invalid! - $response = YOOMEDIA_QUERY_API('out_textmail.php', true); // @TODO Ask Yoo!Media for test script + $response = YOOMEDIA_QUERY_API('out_textmail.php', TRUE); // @TODO Ask Yoo!Media for test script // Default error code is 0 = all fine! $errorCode = YOOMEDIA_GET_ERRORCODE_FROM_RESULT($response); @@ -201,10 +201,10 @@ function YOOMEDIA_PREPARE_MAIL_DELIVERY ($data) { // Is this an admin? if (!isAdmin()) { // Abort here - return false; + return FALSE; } elseif (!isExtensionActive('bonus')) { // Abort here - return false; + return FALSE; } // Is the waiting time below one second? Then fix it to one (zero seconds are not yet supported!) @@ -221,7 +221,7 @@ function YOOMEDIA_PREPARE_MAIL_DELIVERY ($data) { } // END - if // Load template - loadTemplate('admin_send_yoomedia', false, $data); + loadTemplate('admin_send_yoomedia', FALSE, $data); } // Adds the mail to the bonus mail pool @@ -229,10 +229,10 @@ function YOOMEDIA_SEND_BONUS_MAIL ($data, $mailMode) { // Is this an admin? if (!isAdmin()) { // Abort here - return false; + return FALSE; } elseif (!isExtensionActive('bonus')) { // Abort here - return false; + return FALSE; } // Add dummy receiver to avoid notice @@ -259,7 +259,7 @@ function YOOMEDIA_SEND_BONUS_MAIL ($data, $mailMode) { // Lockdown given id function YOOMEDIA_EXCLUDE_MAIL ($data, $mailMode) { // Search for the entry - if (YOOMEDIA_CHECK_RELOAD($data['id'], $data['reload'], $mailMode) === false) { + if (YOOMEDIA_CHECK_RELOAD($data['id'], $data['reload'], $mailMode) === FALSE) { // Convert mode for mails $mailMode = YOOMEDIA_CONVERT_MODE($mailMode); @@ -322,7 +322,7 @@ function translateYooMediaError ($errorCode) { // Checks if the mail id is in reload lock function YOOMEDIA_CHECK_RELOAD ($id, $reload, $type) { // Default is not in reload lock - $reloaded = false; + $reloaded = FALSE; // Query database $result = SQL_QUERY_ESC("SELECT `id`, UNIX_TIMESTAMP(`inserted`) AS inserted FROM `{?_MYSQL_PREFIX?}_yoomedia_reload` WHERE `type`='%s' AND `y_id`=%s LIMIT 1", @@ -354,7 +354,7 @@ function YOOMEDIA_CHECK_RELOAD ($id, $reload, $type) { // Lock given mail down for reload lock function YOOMEDIA_RELOAD_LOCK ($data, $mailMode) { // Search for the entry - if (YOOMEDIA_CHECK_RELOAD($data['id'], $data['reload'], $mailMode) === false) { + if (YOOMEDIA_CHECK_RELOAD($data['id'], $data['reload'], $mailMode) === FALSE) { // Convert mode for mails $mailMode = YOOMEDIA_CONVERT_MODE($mailMode); @@ -431,7 +431,7 @@ function YOOMEDIA_GET_ERRORCODE_FROM_RESULT ($response) { $code = '0'; } else { // Should not happen! - reportBug(__FUNCTION__, __LINE__, 'Cannot parse response. Raw response:
' . print_r($response, true) . '
'); + reportBug(__FUNCTION__, __LINE__, 'Cannot parse response. Raw response:
' . print_r($response, TRUE) . '
'); } // Return error code