Skip to content

Commit 8071695

Browse files
committed
various non-impactful changes
1 parent b8de622 commit 8071695

File tree

3 files changed

+5
-25
lines changed

3 files changed

+5
-25
lines changed

Core/Controller.php

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,19 @@
77
* project. Used to hold and keep track of many of the variables
88
* that support the applications execution.
99
*
10-
* @version 1.0
11-
*
10+
* @version 2.1
1211
* @author Joey Kimsey <JoeyKimsey@thetempusproject.com>
13-
*
1412
* @link https://TheTempusProject.com/Core
15-
*
1613
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
1714
*/
1815

1916
namespace TempusProjectCore\Core;
2017

2118
use TempusProjectCore\Classes\CustomException;
22-
use TempusProjectCore\Classes\Pagination;
2319
use TempusProjectCore\Functions\Routes;
24-
use TempusProjectCore\Classes\Session;
25-
use TempusProjectCore\Classes\Cookie;
2620
use TempusProjectCore\Classes\Config;
27-
use TempusProjectCore\Classes\Check;
2821
use TempusProjectCore\Classes\Debug;
29-
use TempusProjectCore\Classes\Token;
30-
use TempusProjectCore\Classes\Input;
31-
use TempusProjectCore\Classes\Email;
3222
use TempusProjectCore\Classes\Issue;
33-
use TempusProjectCore\Classes\Hash;
3423
use TempusProjectCore\Classes\Log;
3524
use TempusProjectCore\Classes\DB;
3625

@@ -60,13 +49,8 @@ class Controller
6049
/////////////////////////
6150
// Main User Variables //
6251
/////////////////////////
63-
protected static $activeGroup = null;
52+
protected static $activePerms = null;
6453
protected static $activePrefs = null;
65-
protected static $isLoggedIn = false;
66-
protected static $activeUser = null;
67-
protected static $isMember = false;
68-
protected static $isAdmin = false;
69-
protected static $isMod = false;
7054

7155
/**
7256
* This is the constructor, we use this to populate some of our system

Functions/Routes.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,11 @@
44
*
55
* This class is used to easily return file and document location information.
66
*
7-
* @version 1.0
8-
*
7+
* @version 2.1
98
* @author Joey Kimsey <JoeyKimsey@thetempusproject.com>
10-
*
119
* @link https://TheTempusProject.com/Core
12-
*
1310
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
1411
*/
15-
1612
namespace TempusProjectCore\Functions;
1713

1814
use TempusProjectCore\Classes\Input;

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
TempusProjectCore is the core functionality used by [The Tempus Project](https://github.com/TheTempusProject/TheTempusProject) a rapid prototyping framework. This Library can be utilized outside of the TempusProject, but the functionality has not been tested well as a stand alone library.
66

7-
This library utilizes the MVC architecture in addition to a custom templating engine designed to make building web applications simple.
7+
This library utilizes the MVC architecture in addition to a custom templating engine designed to make building web applications fast and simple.
88

99
**Notice: This Library is provided as is, please use at your own risk.**
1010

1111
## Installation and Use
12-
The easiest way to use TPC in your own application is to install and initialize it via composer.
12+
The easiest way to use TPC in your application is to install and initialize it via composer.
1313

1414
```
1515
"require": {

0 commit comments

Comments
 (0)