44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php declare(strict_types=1);
 | 
						|
 | 
						|
use function MicroHTML\FORM;
 | 
						|
use function MicroHTML\INPUT;
 | 
						|
use function MicroHTML\P;
 | 
						|
use function MicroHTML\TEXTAREA;
 | 
						|
 | 
						|
class ETTheme extends Themelet
 | 
						|
{
 | 
						|
    /*
 | 
						|
     * Create a page showing info
 | 
						|
     *
 | 
						|
     * $info = an array of ($name => $value)
 | 
						|
     */
 | 
						|
    public function display_info_page($yaml)
 | 
						|
    {
 | 
						|
        global $page;
 | 
						|
 | 
						|
        $page->set_title("System Info");
 | 
						|
        $page->set_heading("System Info");
 | 
						|
        $page->add_block(new NavBlock());
 | 
						|
        $page->add_block(new Block("Information:", $this->build_data_form($yaml)));
 | 
						|
    }
 | 
						|
 | 
						|
    protected function build_data_form($yaml): string
 | 
						|
    {
 | 
						|
        return (string)FORM(
 | 
						|
            ["action"=>"https://shimmie.shishnet.org/register.php", "method"=>"POST"],
 | 
						|
            INPUT(["type"=>"hidden", "name"=>"registration_api", "value"=>"2"]),
 | 
						|
            P(
 | 
						|
                "Your stats are useful so that I know which combinations of ".
 | 
						|
                "web servers / databases / etc I need to support :)"
 | 
						|
            ),
 | 
						|
            P(TEXTAREA(
 | 
						|
                ["name"=>'data', "style"=>"width: 100%; height: 20em;"],
 | 
						|
                $yaml
 | 
						|
            )),
 | 
						|
            P(INPUT(
 | 
						|
                ["type"=>'submit', "value"=>'Click to send to Shish', "style"=>"width: 100%; padding: 1em;"]
 | 
						|
            )),
 | 
						|
        );
 | 
						|
    }
 | 
						|
}
 |