mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-25 18:42:31 +01:00
cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
17 lines
249 B
PHP
17 lines
249 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Traits\Controllers;
|
|
|
|
use JavaScript;
|
|
|
|
trait PlainJavascriptInjection
|
|
{
|
|
/**
|
|
* Injects statistics into javascript.
|
|
*/
|
|
public function injectJavascript($data)
|
|
{
|
|
JavaScript::put($data);
|
|
}
|
|
}
|