A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 line
226B

  1. <?php
  2. namespace App\Helper;
  3. class PDA
  4. {
  5. public static function isPDA()
  6. {
  7. $ua = $_SERVER['HTTP_USER_AGENT'] ?? '';
  8. if (str_contains($ua, 'Windows CE; PPC;')) return true;
  9. return false;
  10. }
  11. }