source: trunk/Compiler/Modules/PHP/ModulePHP.pas

Last change on this file was 75, checked in by chronos, 6 months ago
  • Modified: Removed U prefix from unit names.
  • Modified: Updated Common package.
File size: 582 bytes
Line 
1unit ModulePHP;
2
3interface
4
5uses
6 Classes, SysUtils, ModularSystem, SourceConvertor;
7
8type
9 { TModulePHP }
10
11 TModulePHP = class(TModule)
12 constructor Create(AOwner: TComponent); override;
13 procedure DoInstall; override;
14 procedure DoUninstall; override;
15 end;
16
17
18implementation
19
20uses
21 CompilerAPI;
22
23resourcestring
24 SPHP = 'PHP';
25
26{ TModulePHP }
27
28constructor TModulePHP.Create;
29begin
30 inherited;
31 Identification := 'PHP';
32 Title := SPHP;
33end;
34
35procedure TModulePHP.DoInstall;
36begin
37 inherited;
38end;
39
40procedure TModulePHP.DoUninstall;
41begin
42 inherited;
43end;
44
45end.
46
Note: See TracBrowser for help on using the repository browser.