widget_uptime.php 214 B

12345678910111213
  1. <?php
  2. class widget_uptime extends TaskbarWidget {
  3. public function render() {
  4. $command = 'uptime';
  5. $result = $this->widgetContainer(shell_exec($command));
  6. return ($result);
  7. }
  8. }
  9. ?>