mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-08-18 08:38:29 +02:00
19 lines
168 B
Markdown
19 lines
168 B
Markdown
|
<?php
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
```php
|
||
|
class widget_name
|
||
|
{
|
||
|
|
||
|
public static getWidget($data)
|
||
|
{
|
||
|
global $config, $ui;
|
||
|
|
||
|
return $ui->fetch('widget/template');
|
||
|
}
|
||
|
}
|
||
|
```
|