Merge branch '105-tracy-debugger-bar-not-loading' into 'master'

The Last Merge for 1.0.0

This will be the last merge request with actual functional changes before 1.0.0.

After this a last MR will follow which sets every license header right and prepares for release.

> Closes #108 

See merge request !52
This commit is contained in:
Abel Hoogeveen 2016-07-23 17:26:37 +02:00
commit dbdeddd1f8
188 changed files with 842 additions and 646 deletions

View File

@ -22,4 +22,4 @@ tag, you are giving permission to license the patch as GPLv3-or-later. See
You can find more information on our website:
https://fuzeworks.techfuze.net/
https://techfuze.net/fuzeworks/

View File

@ -1,111 +0,0 @@
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
CREATE TABLE IF NOT EXISTS `hi_config` (
`id` int(11) NOT NULL,
`file` varchar(32) NOT NULL,
`key` text NOT NULL,
`value` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `hi_log` (
`id` int(11) NOT NULL,
`type` varchar(8) NOT NULL,
`message` varchar(255) NOT NULL,
`logFile` varchar(255) NOT NULL,
`logLine` int(11) NOT NULL,
`context` text NOT NULL,
`runtime` double NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `hi_user_data` (
`data_id` int(11) NOT NULL,
`data_user_id` int(11) NOT NULL,
`data_key` varchar(255) NOT NULL,
`data_value` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `hi_user_emails` (
`email_id` int(11) NOT NULL,
`email_user_id` int(11) NOT NULL,
`email_text` varchar(64) NOT NULL,
`email_primary` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `hi_user_permissions` (
`permission_id` int(11) NOT NULL,
`permission_tag_id` int(11) NOT NULL,
`permission_user_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `hi_user_sessions` (
`session_id` int(11) NOT NULL,
`session_hash` varchar(255) NOT NULL,
`session_user_id` int(11) NOT NULL,
`session_info` text NOT NULL,
`session_ip` varchar(64) NOT NULL,
`session_start` datetime NOT NULL,
`session_end` datetime NOT NULL,
`session_active` tinyint(1) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `hi_user_tags` (
`tag_id` int(11) NOT NULL,
`tag_name` varchar(64) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
INSERT INTO `hi_user_tags` (`tag_id`, `tag_name`) VALUES
(1, 'ACTIVE'),
(2, 'BLOCKED'),
(3, 'ADMIN');
CREATE TABLE IF NOT EXISTS `hi_user_users` (
`user_id` int(11) NOT NULL,
`user_username` varchar(32) NOT NULL,
`user_password` varchar(255) NOT NULL,
`user_email` varchar(255) NOT NULL COMMENT 'Primary Email of the user',
`user_verify_code` varchar(16) NOT NULL COMMENT 'Verification code used in email to verify user email'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
ALTER TABLE `hi_config`
ADD PRIMARY KEY (`id`);
ALTER TABLE `hi_log`
ADD PRIMARY KEY (`id`);
ALTER TABLE `hi_user_data`
ADD PRIMARY KEY (`data_id`);
ALTER TABLE `hi_user_emails`
ADD PRIMARY KEY (`email_id`);
ALTER TABLE `hi_user_permissions`
ADD PRIMARY KEY (`permission_id`);
ALTER TABLE `hi_user_sessions`
ADD PRIMARY KEY (`session_id`);
ALTER TABLE `hi_user_tags`
ADD PRIMARY KEY (`tag_id`);
ALTER TABLE `hi_user_users`
ADD PRIMARY KEY (`user_id`);
ALTER TABLE `hi_config`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
ALTER TABLE `hi_log`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
ALTER TABLE `hi_user_data`
MODIFY `data_id` int(11) NOT NULL AUTO_INCREMENT;
ALTER TABLE `hi_user_emails`
MODIFY `email_id` int(11) NOT NULL AUTO_INCREMENT;
ALTER TABLE `hi_user_permissions`
MODIFY `permission_id` int(11) NOT NULL AUTO_INCREMENT;
ALTER TABLE `hi_user_sessions`
MODIFY `session_id` int(11) NOT NULL AUTO_INCREMENT;
ALTER TABLE `hi_user_tags`
MODIFY `tag_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4;
ALTER TABLE `hi_user_users`
MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT;

View File

@ -1,7 +1,7 @@
FuzeWorks - Readme [![build status](http://10.0.0.32/fuzeworks/core/badges/master/build.svg)](http://10.0.0.32/fuzeworks/core/commits/master)
===================
Version 0.0.1-DEV
Version 1.0.0-DEV
A versatile PHP Framework built to perform.

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Logger;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Logger;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Factory;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Logger;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Logger;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Logger;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Logger;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Logger;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Logger;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Logger;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Logger;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Utf8;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Logger;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use \Exception;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Logger;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Core;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Logger;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
use FuzeWorks\Logger;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
/**

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks\Event;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks\Event;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks\Event;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks\Event;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks\Event;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks\Event;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks\ConfigORM;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks\ConfigORM;

View File

@ -24,14 +24,15 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks;
use FuzeWorks\Exception\InvalidArgumentException;
use Tracy\Debugger;
/**
* Class Configurator.
@ -199,6 +200,13 @@ class Configurator
define('ENVIRONMENT', 'PRODUCTION');
}
// And enable Tracy Debugger
if (class_exists('Tracy\Debugger', true))
{
Debugger::enable(!$this->parameters['debugMode'], realpath($this->parameters['logDir']));
Logger::$useTracy = true;
}
// Then load the framework
Core::init();
}

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks;
@ -49,7 +49,7 @@ class Core
*
* @var string Framework version
*/
public static $version = '0.0.1';
public static $version = '1.0.0';
/**
* Working directory of the Framework.

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks\Event;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks;

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks;
@ -91,8 +91,19 @@ class Events
*/
public static function addListener($callback, $eventName, $priority = EventPriority::NORMAL)
{
// Perform multiple checks
if (EventPriority::getPriority($priority) == false) {
throw new EventException('Unknown priority '.$priority);
throw new EventException('Can not add listener: Unknown priority '.$priority, 1);
}
if (!is_callable($callback))
{
throw new EventException("Can not add listener: Callback is not callable", 1);
}
if (empty($eventName))
{
throw new EventException("Can not add listener: No eventname provided", 1);
}
if (!isset(self::$listeners[$eventName])) {

View File

@ -24,10 +24,10 @@
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
*
* @link http://fuzeworks.techfuze.net
* @link http://techfuze.net/fuzeworks
* @since Version 0.0.1
*
* @version Version 0.0.1
* @version Version 1.0.0
*/
namespace FuzeWorks\Exception;

Some files were not shown because too many files have changed in this diff Show More