mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 19:34:16 +01:00 
			
		
		
		
	Becasue of too many kittens PSR-5 backed off of deprecating @var. So that's the way we go too.
		
			
				
	
	
		
			20 lines
		
	
	
		
			640 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			640 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
| <div class="controls">
 | |
|     <?= /** @var \Icinga\Web\Widget\Tabs $tabs */ $tabs->showOnlyCloseButton(); ?>
 | |
|     <h1><?= $this->translate('Module documentations'); ?></h1>
 | |
| </div>
 | |
| <div class="content">
 | |
|     <ul>
 | |
|     <?php foreach ($modules as $module): ?>
 | |
|         <li><?= $this->qlink(
 | |
|             $module->getTitle(),
 | |
|             'doc/module/toc',
 | |
|             array('moduleName' => $module->getName()),
 | |
|             array('title' => sprintf(
 | |
|                 $this->translate('Show the documentation\'s table of contents for the %s'),
 | |
|                 $module->getTitle()
 | |
|             ))
 | |
|         ); ?></li>
 | |
|     <?php endforeach ?>
 | |
|     </ul>
 | |
| </div>
 |