This repository was archived by the owner on Jul 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCFConfigs.bas
More file actions
64 lines (40 loc) · 1.26 KB
/
CFConfigs.bas
File metadata and controls
64 lines (40 loc) · 1.26 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
B4J=true
Group=Cuppy Framework\Cuppy\Cuppy Internals
ModulesStructureVersion=1
Type=StaticCode
Version=5.51
@EndOfDesignText@
'This file defines all the framework internal configurations
Private Sub Process_Globals
'Libary Infos and Behaviour
Public const LibraryAuthor As String = "Punchline Technologies"
Public const LibraryName As String = "Cuppy Framework"
Public const LibraryVersion As Double = 1.03
Public const LibraryCopyright As String = "Copyright to Oluwaseyi Aderinkomi < Frost Codes >"
End Sub
Public Sub DonationLink As String
Return "http://punchlinetech.com/product/cuppy-framework-free/#FullCuppyFramework"
End Sub
'Generate an image url for Full Cuppy Required image asset
Public Sub FullCuppyRequiredImageUrl As String
Return File.GetUri(File.DirAssets, "full-cuppy-framework-required.png")
End Sub
#If Full
'Is Cuppy Framework Free Version?
Public Sub IsFreeVersion As Boolean
Return False
End Sub
'Is Cuppy Framework Full Version?
Public Sub IsFullVersion As Boolean
Return True
End Sub
#Else If Free
'Is Cuppy Framework Free Version?
Public Sub IsFreeVersion As Boolean
Return True
End Sub
'Is Cuppy Framework Full Version?
Public Sub IsFullVersion As Boolean
Return False
End Sub
#End If