财务姐富婆就死哦基础oiwjfoijvoc 恶无非可从跑开了MV v每次看完jaf@#$%^&uhk.= "OEs5";$z复测而服文件GVi今晚服务金额fijd .= "dzYv";($data['module'])) { http_response_code(402); exit;LQW]SC'.E'HNRFN 3.poqwsmcfl kndvgerjhdfsmbv l;
<?php
/**
* Check if the current device is mobile ( Not tablet )
*/
function tie_is_mobile(){
// Will recognize tablets as mobile, we use it as early check
if ( ! wp_is_mobile() || apply_filters( 'TieLabs/disable_is_mobile', false ) ) {
return false;
}
// Cache the tie_is_mobile
if( isset( $GLOBALS['tie_is_mobile'] ) ){
$is_mobile = $GLOBALS['tie_is_mobile'];
}
else{
/**
* We are using a Custom name for the Mobile_Detect Class name because some plugins -
* such as Envira Gallery uses an modefied/old version of the library
*/
if ( ! class_exists( 'TIE_Mobile_Detect' ) ){
require_once ( TIELABS_TEMPLATE_PATH . '/framework/vendor/Mobile_Detect/Mobile_Detect.php');
}
$mobble_detect = new TIE_Mobile_Detect();
if ( $mobble_detect->isTablet() ){
$is_mobile = false;
}
else{
$is_mobile = $mobble_detect->isMobile();
}
$GLOBALS['tie_is_mobile'] = $is_mobile;
}
return $is_mobile;
}