Updated copyright year

This commit is contained in:
Tobias Reich 2015-03-29 18:56:08 +02:00
parent 93fc15532a
commit 9278182b10
5 changed files with 10 additions and 10 deletions

View File

@ -79,7 +79,7 @@ I am working hard on continuously developing and maintaining Lychee. Please cons
(MIT License) (MIT License)
Copyright (C) 2014 [Tobias Reich](http://electerious.com) Copyright (C) 2015 [Tobias Reich](http://electerious.com)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@ -20,7 +20,7 @@ The plugin-system of Lychee allows you to execute scripts, when a certain action
### ###
# @name ExamplePlugin # @name ExamplePlugin
# @author Tobias Reich # @author Tobias Reich
# @copyright 2014 by Tobias Reich # @copyright 2015 by Tobias Reich
### ###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!'); if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
@ -36,7 +36,7 @@ class ExamplePlugin implements SplObserver {
# Save them to access the database and settings of Lychee # Save them to access the database and settings of Lychee
$this->database = $database; $this->database = $database;
$this->settings = $settings; $this->settings = $settings;
# Add more code here if wanted # Add more code here if wanted
# __construct() will be called every time Lychee gets called # __construct() will be called every time Lychee gets called
# Make sure this part is performant # Make sure this part is performant
@ -55,9 +55,9 @@ class ExamplePlugin implements SplObserver {
# $this->database => The database of Lychee # $this->database => The database of Lychee
# $this->settings => The settings of Lychee # $this->settings => The settings of Lychee
# $subject->args => Params passed to the original function # $subject->args => Params passed to the original function
return true; return true;
} }
} }

View File

@ -104,7 +104,7 @@ $config = "<?php
### ###
# @name Configuration # @name Configuration
# @author Tobias Reich # @author Tobias Reich
# @copyright 2014 Tobias Reich # @copyright 2015 Tobias Reich
### ###
if(!defined('LYCHEE')) exit('Error: Direct access is not allowed!'); if(!defined('LYCHEE')) exit('Error: Direct access is not allowed!');

View File

@ -3,7 +3,7 @@
### ###
# @name Check Plugin # @name Check Plugin
# @author Tobias Reich # @author Tobias Reich
# @copyright 2014 by Tobias Reich # @copyright 2015 by Tobias Reich
# @description This file takes a look at your Lychee-configuration and displays all errors it can find. # @description This file takes a look at your Lychee-configuration and displays all errors it can find.
### ###

View File

@ -1,9 +1,9 @@
<?php <?php
### ###
# @name Display Log Plugin # @name Display Log Plugin
# @author Tobias Reich # @author Tobias Reich
# @copyright 2014 by Tobias Reich # @copyright 2015 by Tobias Reich
# @description This file queries the database for log messages and displays them if present. # @description This file queries the database for log messages and displays them if present.
### ###