2013-10-29 16:51:16 +01:00
|
|
|
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}
|
|
|
|
|
2016-06-22 17:49:16 +02:00
|
|
|
|
2013-10-29 16:51:16 +01:00
|
|
|
uses App1MainControllerU;
|
|
|
|
|
|
|
|
procedure TWebModule1.WebModuleCreate(Sender: TObject);
|
|
|
|
begin
|
|
|
|
MVC := TMVCEngine.Create(Self);
|
2016-06-22 17:49:16 +02:00
|
|
|
MVC.Config[TMVCConfigKey.ViewPath] := '.\www\public_html';
|
|
|
|
MVC.Config[TMVCConfigKey.DocumentRoot] := '.\www\public_html';
|
2013-10-29 16:51:16 +01:00
|
|
|
MVC.AddController(TApp1MainController);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TWebModule1.WebModuleDestroy(Sender: TObject);
|
|
|
|
begin
|
|
|
|
MVC.free;
|
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|