mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 11:24:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			1021 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1021 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| use Icinga\Web\Navigation\Navigation;
 | |
| 
 | |
| $navigation = new Navigation();
 | |
| $navigation->load($object->getType() . '-action');
 | |
| foreach ($navigation as $item) {
 | |
|     $item->setObject($object);
 | |
| }
 | |
| 
 | |
| // add warning to links that open in new tabs to improve accessibility, as recommended by WCAG20 G201
 | |
| $newTabInfo = sprintf('<span class="info-box display-on-hover"> %s </span>', $this->translate('opens in new window'));
 | |
| 
 | |
| foreach ($object->getActionUrls() as $i => $link) {
 | |
|     $navigation->addItem(
 | |
|         'Action ' . ($i + 1) . $newTabInfo,
 | |
|         array(
 | |
|             'url'       => $link,
 | |
|             'target'    => '_blank'
 | |
|         )
 | |
|     );
 | |
| }
 | |
| 
 | |
| if (isset($this->actions)) {
 | |
|     foreach ($this->actions as $id => $action) {
 | |
|         $navigation->addItem($id, array('url' => $action));
 | |
|     }
 | |
| }
 | |
| 
 | |
| if ($navigation->isEmpty() || !$navigation->hasRenderableItems()) {
 | |
|     return;
 | |
| }
 | |
| 
 | |
| ?>
 | |
| <tr>
 | |
|     <th><?= $this->translate('Actions'); ?></th>
 | |
|     <?= $navigation->getRenderer()->setElementTag('td')->setCssClass('actions'); ?>
 | |
| </tr>
 |