Просмотр файла engine/functions/detect_device.php

Размер файла: 239B
  1. <?php
  2. if (isset($_SESSION['user_device']))
  3. return $_SESSION['user_device'];
  4. else
  5. {
  6. Core::get('Mobile_Detect');
  7. $detect = new Mobile_Detect;
  8. return $_SESSION['user_device'] = $detect->isMobile() ? 'phone' : 'computer';
  9. }