-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathclass.template.php
More file actions
33 lines (26 loc) · 1.26 KB
/
class.template.php
File metadata and controls
33 lines (26 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
<?php
//////////////////////////////////////////////////////////////////////////////80
// Template Class
//////////////////////////////////////////////////////////////////////////////80
// Copyright (c) 2020 Liam Siira (liam@siira.io), distributed as-is and without
// warranty under the MIT License. See [root]/license.md for more.
// This information must remain intact.
//////////////////////////////////////////////////////////////////////////////80
// Authors: Atheos Team, @hlsiira
//////////////////////////////////////////////////////////////////////////////80
class Template {
//////////////////////////////////////////////////////////////////////////80
// PROPERTIES
//////////////////////////////////////////////////////////////////////////80
private $activeUser = null;
//////////////////////////////////////////////////////////////////////////80
// METHODS
//////////////////////////////////////////////////////////////////////////80
// ----------------------------------||---------------------------------- //
//////////////////////////////////////////////////////////////////////////80
// Construct
//////////////////////////////////////////////////////////////////////////80
public function __construct($activeUser) {
$this->activeUser = $activeUser;
}
}