forked from f3-factory/fatfree-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update fatfree core to use the top level vendor namespace
F3
. Refs f…
…3-factory#110. Required following refactoring most of which was automatable: * Add `namespace F3` to all top level files programatically, and amend the namespace of files that already had a namespace to include prefix `F3`. * Replace all relative refs to non F3 classes in the to level with absolute refs. * Amend all absolute refs to F3 class in non top level classes. * Minor touch up to autoloader - use require_once() not require(). * Fix some implicit refs to non prefixed namespaces in Preview::token(). * The sample app and test at /bcosca/fatfree will have to be updated. Already done sucessfully. Will push shortly.
- Loading branch information
Showing
31 changed files
with
152 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,8 @@ | |
*/ | ||
|
||
namespace F3; | ||
|
||
//! Data validator | ||
class Audit extends Prefab { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,8 @@ | |
*/ | ||
|
||
namespace F3; | ||
|
||
|
||
//! Authorization/authentication plug-in | ||
class Auth { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,8 @@ | |
*/ | ||
|
||
namespace F3; | ||
|
||
//! Lightweight password hashing library | ||
class Bcrypt extends Prefab { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.