mirror of
				https://github.com/Hutchy68/pivot.git
				synced 2025-11-04 02:57:35 +01:00 
			
		
		
		
	addressing some duplication issues
This commit is contained in:
		
							
								
								
									
										16
									
								
								view/sidebar.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								view/sidebar.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,16 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
if ( ! defined('MEDIAWIKI'))
 | 
			
		||||
{
 | 
			
		||||
	die("Wiki Wonders What You're Doing");
 | 
			
		||||
}
 | 
			
		||||
		
 | 
			
		||||
	foreach ( $this->getSidebar() as $boxName => $box ) { if ( ($box['header'] != wfMessage( 'toolbox' )->text())  ) { ?>
 | 
			
		||||
		<li id='<?php echo Sanitizer::escapeId( $box['id'] ) ?>'<?php echo Linker::tooltip( $box['id'] ) ?>>
 | 
			
		||||
			<li><label><?php echo htmlspecialchars( $box['header'] ); ?></label></li>
 | 
			
		||||
				<?php if ( is_array( $box['content'] ) ) { ?>
 | 
			
		||||
						<?php foreach ( $box['content'] as $key => $item ) { echo $this->makeListItem( $key, $item ); } ?>
 | 
			
		||||
							<?php } } ?>
 | 
			
		||||
								<?php } ?>
 | 
			
		||||
			<li><label>Toolbox</label></li>
 | 
			
		||||
				<?php foreach ( $this->getToolbox() as $key => $item ) { echo $this->makeListItem($key, $item); } ?>
 | 
			
		||||
		Reference in New Issue
	
	Block a user