-
Notifications
You must be signed in to change notification settings - Fork 0
/
Module.php
52 lines (42 loc) · 1022 Bytes
/
Module.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?PHP
Namespace Season ;
Abstract Class Module
{
Private $SeasonHandle = Null ;
Private $Identification = '' ;
Protected $Dependencies = Array ( ) ;
Public Function __Construct ( & $SeasonHandle , $Identification )
{
$this->SeasonHandle = $SeasonHandle ;
$this->Identification = $Identification ;
}
Protected Function CheckParameter ( $Parameter , $Size = Null )
{
If ( ! $Parameter === Null || Empty ( $Parameter ) || ( $Size && SizeOf ( $Parameter ) < $Size ) )
Return False ;
Return True ;
}
Public Function & GetSeasonHandle ( )
{
Return $this->SeasonHandle ;
}
Public Function GetIdentification ( )
{
Return $this->Identification ;
}
Public Function GetDependencies ( )
{
Return $this->Dependencies ;
}
Public Function __Call ( $Name , $Parameter )
{
Return Null ;
}
Public Function __Set ( $Name , $Value )
{
}
Public Function __Get ( $Name )
{
}
}
?>