mirror of
				https://github.com/billz/raspap-webgui.git
				synced 2025-03-01 10:31:47 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			348 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			348 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| 
 | |
| require_once "app/lib/Parsedown.php";
 | |
| 
 | |
| /**
 | |
|  * Displays info about the RaspAP project
 | |
|  */
 | |
| function DisplayAbout()
 | |
| {
 | |
|     $Parsedown = new Parsedown();
 | |
|     $strContent = file_get_contents($_SERVER['DOCUMENT_ROOT'].'/BACKERS.md');
 | |
|     $sponsorsHtml = $Parsedown->text($strContent);
 | |
| 
 | |
|     echo renderTemplate("about", compact('sponsorsHtml'));
 | |
| }
 | |
| 
 |