| Server IP : 127.0.1.1 / Your IP : 127.0.0.1 Web Server : Apache/2.4.52 (Ubuntu) System : Linux sealall 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64 User : devops ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/domains/sealall.ca/wp-content/plugins/independent-analytics/IAWP/Overview/ |
Upload File : |
<?php
namespace IAWP\Overview;
use IAWP\Overview\Modules\Module;
/** @internal */
class Overview
{
public function __construct()
{
}
public function get_report_html() : string
{
// Get modules first, so defaults can be set before last_refreshed_at is called...
$modules = Module::get_saved_modules();
return \IAWPSCOPED\iawp_render('overview.overview', ['overview' => $this, 'last_refreshed_at' => Module::last_refreshed_at(), 'saved_modules' => $modules, 'template_modules' => Module::get_template_modules()]);
}
}