mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 11:24:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			401 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			401 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
| <?php if (empty($object->customvars)) return; ?>
 | |
| <tr class="newsection">
 | |
|     <td colspan="2">
 | |
|         <h2 class="customvar"><?= $this->translate('Custom variables') ?></h2>
 | |
|     </td>
 | |
| </tr>
 | |
| <?php
 | |
| 
 | |
| foreach ($object->customvars as $name => $value) {
 | |
| 
 | |
|     printf(
 | |
|         '<tr><th>%s</th><td class="customvar">%s</td></tr>' . "\n",
 | |
|         $this->escape($name),
 | |
|         $this->customvar($value)
 | |
|     );
 | |
| }
 | |
| 
 |