b0y-101 Mini Shell


Current Path : E:/www3/chiangrai/wp-content/plugins/envira-gallery-lite/includes/global/
File Upload :
Current File : E:/www3/chiangrai/wp-content/plugins/envira-gallery-lite/includes/global/Mobile_Detect.php

<?php
/**
 * Mobile Detect Library
 *
 * @deprecated 1.6.4
 *
 * @package Envira Gallery
 */

/**
 * Mobile Detect Class.
 */
class Mobile_Detect {

	/**
	 * Replacement function for Legecy Class
	 *
	 * @return boolean
	 */
	public function isMobile(){ // @codingStandardsIgnoreLine

		if ( isset( $_SERVER['HTTP_USER_AGENT'] ) ) {

			return preg_match( '/(android|avantgo|blackberry|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i', sanitize_text_field( wp_unslash( $_SERVER['HTTP_USER_AGENT'] ) ) );

		}

		return false;
	}
}

Copyright © 2019 by b0y-101