HEX
Server: Apache/2.4.65 (Debian)
System: Linux kubikelcreative 5.10.0-35-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User: www-data (33)
PHP: 8.4.13
Disabled: NONE
Upload Files
File: /var/www/Gosuryaid/wp/wp-content/themes/my-listing/templates/dashboard/stats/widgets/devices.php
<div class="element">
	<div class="pf-head round-icon">
		<div class="title-style-1">
			<i class="mi devices"></i>
			<h5><?php _ex( 'Devices', 'User Dashboard', 'my-listing' ) ?></h5>
		</div>
	</div>
	<div class="pf-body">
		<?php if ( $devices = $stats->get('visits.devices') ): ?>
			<ul class="dash-table">
				<?php foreach ( $devices as $device ): ?>
					<?php printf(
						'<li data-device="%s"><strong>%s</strong> ('._x( '%s views', 'User Dashboard', 'my-listing' ).')</li>',
						esc_attr( $device['name'] ),
						$device['label'],
						number_format_i18n( $device['count'] )
					) ?>
				<?php endforeach ?>
			</ul>
		<?php endif ?>
	</div>
</div>