HEX
Server: Apache/2.4.25 (Debian)
System: Linux server17 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
User: web37 (1062)
PHP: 7.4.30
Disabled: show_source, highlight_file, apache_child_terminate, apache_get_modules, apache_note, apache_setenv, virtual, dl, disk_total_space, posix_getpwnam, posix_getpwuid, posix_mkfifo, posix_mknod, posix_setpgid, posix_setsid, posix_setuid, posix_uname, proc_nice, openlog, syslog, pfsockopen
Upload Files
File: /var/www/web37/htdocs/lovetalk/admin/templates/cart/tabs.php
<?php

// -------------------------------
// Load the generic tabs template
// specifying the cart entries
// -------------------------------

$tabsT = new Template("templates/common/tabs.php");
$tabsT->entries = array(
	array(
		"url"    => "cart-orders.php?status=inbox",
		"status" => "inbox",
		"text"   => l10n('cart_inbox', 'Inbox'),
		"icon"   => "cart-plus"
	),
	array(
		"url"    => "cart-orders.php?status=evaded",
		"status" => "evaded",
		"text"   => l10n('cart_evaded', 'Evaded'),
		"icon"   => "paper-plane"
	),
	array(
		"url"    => "cart-orders.php?status=waiting",
		"status" => "waiting",
		"text"   => l10n('cart_waiting', 'Waiting'),
		"icon"   => "hourglass-half"
	),
	array(
		"url"    => "cart-availability.php",
		"status" => "availability",
		"text"   => l10n('cart_availability', 'Availability'),
		"icon"   => "exclamation-triangle"
	),
	array(
		"url"    => "cart-charts.php",
		"status" => "charts",
		"text"   => l10n('cart_order_charts', 'Charts'),
		"icon"   => "bar-chart"
	)
);
$tabsT->status = $status;
$tabsT->borderColorClass = $borderColorClass;
$tabsT->selectedBgColorClass = $selectedBgColorClass;
$tabsT->unselectedBgColorClass = $unselectedBgColorClass;
echo $tabsT->render();