13 namespace Fossology\UI\Page;
17 use Symfony\Component\HttpFoundation\Request;
18 use Symfony\Component\HttpFoundation\Response;
31 const NAME =
"all_job_status";
33 function __construct()
35 parent::__construct(self::NAME,
37 self::TITLE =>
"Status - all server jobs",
38 self::MENU_LIST =>
"Admin::Dashboards::All Jobs",
39 self::REQUIRES_LOGIN =>
false,
48 protected function handle(Request $request)
52 $vars[
'clockTime'] = $SysConf[
'SYSCONFIG'][
'ShowJobsAutoRefresh'];
53 return $this->
render(
'all_job_status.html.twig',
54 $this->mergeWithDefault($vars));
58 register_plugin(
new AllJobStatus());
Contains the constants and helpers for authentication of user.
render($templateName, $vars=null, $headers=null)