![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/gositeme.com/public_html/whmcs/lagom2/includes/tables/quotes/ |
/* Cell Quote ID */
{ldelim}
data: null,
name: "id",
"render": function (data, row){
var text = '',
collapseButton = '<button type="button" class="btn-table-collapse"></button>',
id = data.id;
text = collapseButton + id;
return text;
}
{rdelim},
/* Cell Subject */
{ldelim}
data: null,
name: "subject",
"render": function(data, row){ldelim}
var text = data.subject;
return text;
{rdelim}
{rdelim},
/* Cell Date Created */
{ldelim}
data: null,
name: "datecreated",
"render": function(data, row){ldelim}
var text = data.normalisedDateCreated;
return text;
{rdelim}
{rdelim},
/* Cell Valid Until */
{ldelim}
data: null,
name: "validuntil",
"render": function(data, row){ldelim}
var text = data.normalisedValidUntil;
return text;
{rdelim}
{rdelim},
/* Cell Status */
{ldelim}
data: null,
name: "status",
className: "text-nowrap",
"render": function(data, row){ldelim}
{if $RSThemes.addonSettings.show_status_icon == 'displayed' && in_array($templatefile, $iconsPages)}
var text = `<span class="status status-`+data.stage.cssFriendly+` {if $RSThemes.addonSettings.show_status_icon == 'displayed'}dot-hidden{/if}">
{if $RSThemes.addonSettings.show_status_icon == 'displayed'}
<span class="status-icon" data-status-icon="`+data.status.cssFriendly+`">
`+data.status.statusIcon+`
</span>
{/if}
`+data.stage.statusText+`</span>
`;
{else}
var text = `<span class="status status-`+data.stage.cssFriendly+`">`+data.stage.statusText+`</span>`;
{/if}
return text;
{rdelim}
{rdelim},
/* Cell PDF Button */
{ldelim}
data: null,
name: "actions",
className: "cell-action",
"render": function (data, row){ldelim}
text = `<a href="dl.php?type=q&id=`+data.id+`" class="btn btn-icon btn-sm"><i class="ls ls-download"></i></a>`;
return text;
{rdelim}
{rdelim}