Server IP : 213.176.29.180 / Your IP : 3.138.102.163 Web Server : Apache System : Linux 213.176.29.180.hostiran.name 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64 User : webtaragh ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/webtaragh/public_html/whmcs/modules/widgets/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php namespace WHMCS\Module\Widget; use App; use WHMCS\Module\AbstractWidget; /** * NetworkStatus Widget. * * @copyright Copyright (c) WHMCS Limited 2005-2018 * @license https://www.whmcs.com/license/ WHMCS Eula */ class NetworkStatus extends AbstractWidget { protected $title = 'وضعیت شبکه'; protected $description = 'بررسی وضعیت شبکه در یک نگاه'; protected $weight = 80; protected $cache = true; public function getData() { return localAPI('GetServers', array('fetchStatus' => App::getFromRequest('refresh'))); } public function generateOutput($data) { $output = ''; foreach ($data['servers'] as $server) { $online = $data['fetchStatus'] ? (bool) $server['status']['http'] : null; if ($data['fetchStatus']) { $uptime = $server['status']['uptime'] ? $server['status']['uptime'] : '-'; $load = $server['status']['load'] ? $server['status']['load'] : '-'; } else { $uptime = $load = 'N/A'; } $serverAddress = $server['hostname'] ? $server['hostname'] : $server['ipaddress']; $output .= ' <div class="item"> <div class="name"> <div class="data">' . $server['name'] . '</div> <div class="note"><a href="http://' . $serverAddress . '" target="_blank">' . $serverAddress . '</a></div> </div> <div class="stats text-center"> <div class="status"> <div class="data color-' . (is_null($online) || $online ? 'green' : 'pink') . '">' . (is_null($online) ? 'نامشخص' : ($online ? 'آنلاین' : 'Offline')) . '</div> <div class="note">وضعیت</div> </div> <div class="uptime"> <div class="data">' . (is_null($uptime) ? 'N/A' : $uptime) . '</div> <div class="note">آپتایم</div> </div> <div class="load"> <div class="data text-info">' . (is_null($load) ? 'N/A' : $load) . '</div> <div class="note">متوسط لود</div> </div> </div> </div>'; } if (count($data['servers']) == 0) { $output = '<div class="text-center"> هیچ سروری موجود نیست . <br /><br /> <a href="configservers.php" class="btn btn-primary btn-sm">اولین سرورتان را اضافه نمایید</a> <br /><br /> </div>'; } return <<<EOF <div class="widget-content-padded"> <div class="items-wrapper"> {$output} </div> </div> EOF; } }