delphimvcframework/samples/BasicDemo/WebModuleUnit1.pas
danieleteti 1ef246a589 - Added strongly typed actions
- TWebContext param in the actions is optional
- In case of "action not found", the server dont returns NEVER the document index
- Refactoring
- More unit tests
- BasicDemo updated with typed actions
- Copyright updated (just formatting)
2016-06-22 17:50:31 +02:00

46 lines
830 B
ObjectPascal

unit WebModuleUnit1;
interface
uses System.SysUtils,
System.Classes,
Web.HTTPApp,
MVCFramework;
type
TWebModule1 = class(TWebModule)
procedure WebModuleCreate(Sender: TObject);
procedure WebModuleDestroy(Sender: TObject);
private
MVC: TMVCEngine;
public
{ Public declarations }
end;
var
WebModuleClass: TComponentClass = TWebModule1;
implementation
{$R *.dfm}
uses App1MainControllerU;
procedure TWebModule1.WebModuleCreate(Sender: TObject);
begin
MVC := TMVCEngine.Create(Self);
MVC.Config[TMVCConfigKey.ViewPath] := '.\www\public_html';
MVC.Config[TMVCConfigKey.DocumentRoot] := '.\www\public_html';
MVC.AddController(TApp1MainController);
end;
procedure TWebModule1.WebModuleDestroy(Sender: TObject);
begin
MVC.free;
end;
end.