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
|
|
|
|
2020-04-24 02:48:39 +02:00
|
|
|
uses
|
|
|
|
App1MainControllerU,
|
|
|
|
MVCFramework.Commons,
|
|
|
|
MVCFramework.Middleware.StaticFiles;
|
2013-10-29 16:51:16 +01:00
|
|
|
|
|
|
|
procedure TWebModule1.WebModuleCreate(Sender: TObject);
|
|
|
|
begin
|
2020-05-11 23:39:43 +02:00
|
|
|
MVC := TMVCEngine.Create(Self,
|
|
|
|
procedure(Config: TMVCConfig)
|
|
|
|
begin
|
|
|
|
Config[TMVCConfigKey.ViewPath] := '.\www\public_html';
|
|
|
|
end);
|
2020-04-24 02:48:39 +02:00
|
|
|
|
2020-04-25 01:48:07 +02:00
|
|
|
// Web files
|
2020-09-24 21:30:45 +02:00
|
|
|
MVC.AddMiddleware(TMVCStaticFilesMiddleware.Create('/app', '.\www\public_html'));
|
2020-04-25 01:48:07 +02:00
|
|
|
|
|
|
|
// Image files
|
|
|
|
MVC.AddMiddleware(TMVCStaticFilesMiddleware.Create('/images', '.\www\public_images', 'database.png'));
|
|
|
|
|
2013-10-29 16:51:16 +01:00
|
|
|
MVC.AddController(TApp1MainController);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TWebModule1.WebModuleDestroy(Sender: TObject);
|
|
|
|
begin
|
|
|
|
MVC.free;
|
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|