mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-07-15 04:24:24 +02:00
14 lines
247 B
PHP
14 lines
247 B
PHP
<?php
|
|
|
|
|
|
class account_info
|
|
{
|
|
public function getWidget()
|
|
{
|
|
global $ui;
|
|
|
|
$abills = User::getAttributes("Bill");
|
|
$ui->assign('abills', $abills);
|
|
return $ui->fetch('widget/customers/account_info.tpl');
|
|
}
|
|
}
|