'common-table table-row-selectable', 'data-base-target' => '_next' ]; /** @var Query */ protected $schedules; public function __construct(Query $schedules) { $this->schedules = $schedules; } protected function assemble(): void { /** @var X509Schedule $schedule */ foreach ($this->schedules as $schedule) { $row = static::tr(); $row->addHtml( static::td(new Link($schedule->name, Links::updateSchedule($schedule))), static::td($schedule->author), static::td($schedule->ctime->format('Y-m-d H:i')), static::td($schedule->mtime->format('Y-m-d H:i')) ); $this->addHtml($row); } if ($this->isEmpty()) { $this->setTag('div'); $this->addHtml(new EmptyStateBar($this->translate('No job schedules.'))); } else { $row = static::tr(); $row->addHtml( static::th($this->translate('Name')), static::th($this->translate('Author')), static::th($this->translate('Date Created')), static::th($this->translate('Date Modified')) ); $this->getHeader()->addHtml($row); } } }