'Přihlášení', 'SubmitButtonText' => 'Přihlásit', 'Items' => array( array('Name' => 'UserName', 'Type' => TypeStringId, 'Caption' => 'Jméno', 'Value' => ''), array('Name' => 'Password', 'Type' => TypePasswordId, 'Caption' => 'Heslo', 'Value' => ''), ), ); $FormUserRegister = array ( 'Title' => 'Registrace uživatele', 'Table' => 'User', 'SubmitButtonText' => 'Registrovat', 'Items' => array( array('Name' => 'UserName', 'Type' => TypeStringId, 'Caption' => 'Přihlašovací jméno', 'Value' => ''), array('Name' => 'Password', 'Type' => TypePasswordId, 'Caption' => 'Heslo', 'Value' => ''), array('Name' => 'Password2', 'Type' => TypePasswordId, 'Caption' => 'Potvrzení hesla', 'Value' => ''), array('Name' => 'Email', 'Type' => TypeStringId, 'Caption' => 'E-mail', 'Value' => ''), array('Name' => 'FirstName', 'Type' => TypeStringId, 'Caption' => 'Křestní jméno', 'Value' => ''), array('Name' => 'SecondName', 'Type' => TypeStringId, 'Caption' => 'Příjmení', 'Value' => ''), ), ); $Output = '
'; $Output .= Output(); $Output .= '
'; } return($Output); } } $System->AddModule(new IndexPage()); $System->Modules['IndexPage']->GetOutput(); //var_dump(get_defined_vars()); //print_r($_GLOBAL); ?>