diff options
author | Malf Furious <m@lfurio.us> | 2016-05-26 23:46:22 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-05-26 23:46:22 -0400 |
commit | ec7186ed4e1c2a41ff9052cdd1624b8cabbb047c (patch) | |
tree | b97dabb5359a7244f835ca60293b79409150a664 /app | |
parent | 636485a3b14dbe4eaa07d4c7b41fa279ca4f5e3f (diff) | |
download | scrott-ec7186ed4e1c2a41ff9052cdd1624b8cabbb047c.tar.gz scrott-ec7186ed4e1c2a41ff9052cdd1624b8cabbb047c.zip |
Add copyright notice to Scrott class files
Diffstat (limited to 'app')
-rw-r--r-- | app/class/controller.class.php | 14 | ||||
-rw-r--r-- | app/class/database.iface.php | 14 | ||||
-rw-r--r-- | app/class/externuser.class.php | 14 | ||||
-rw-r--r-- | app/class/form.class.php | 14 | ||||
-rw-r--r-- | app/class/framework.class.php | 14 | ||||
-rw-r--r-- | app/class/group.class.php | 14 | ||||
-rw-r--r-- | app/class/issue.class.php | 14 | ||||
-rw-r--r-- | app/class/message.class.php | 14 | ||||
-rw-r--r-- | app/class/model.class.php | 14 | ||||
-rw-r--r-- | app/class/mysql.class.php | 14 | ||||
-rw-r--r-- | app/class/object.class.php | 14 | ||||
-rw-r--r-- | app/class/pad.class.php | 14 | ||||
-rw-r--r-- | app/class/setting.class.php | 14 | ||||
-rw-r--r-- | app/class/stage.class.php | 14 | ||||
-rw-r--r-- | app/class/user.class.php | 14 |
15 files changed, 210 insertions, 0 deletions
diff --git a/app/class/controller.class.php b/app/class/controller.class.php index effaf78..0ab1a69 100644 --- a/app/class/controller.class.php +++ b/app/class/controller.class.php @@ -1,5 +1,19 @@ <?php +/* + * SCROTT Copyright (C) 2016 Malf Furious + * + * Scrott is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. + * + * Scrott is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + * License for more details. + */ + require_once "class/framework.class.php"; /* diff --git a/app/class/database.iface.php b/app/class/database.iface.php index dcd64ba..b1427a4 100644 --- a/app/class/database.iface.php +++ b/app/class/database.iface.php @@ -1,6 +1,20 @@ <?php /* + * SCROTT Copyright (C) 2016 Malf Furious + * + * Scrott is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. + * + * Scrott is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + * License for more details. + */ + +/* * Generic interface for the various database drivers Scrott may implement support for */ interface Database diff --git a/app/class/externuser.class.php b/app/class/externuser.class.php index 8f5c9d0..73c41bd 100644 --- a/app/class/externuser.class.php +++ b/app/class/externuser.class.php @@ -1,5 +1,19 @@ <?php +/* + * SCROTT Copyright (C) 2016 Malf Furious + * + * Scrott is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. + * + * Scrott is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + * License for more details. + */ + require_once "class/object.class.php"; /* diff --git a/app/class/form.class.php b/app/class/form.class.php index fd85638..f0d660a 100644 --- a/app/class/form.class.php +++ b/app/class/form.class.php @@ -1,6 +1,20 @@ <?php /* + * SCROTT Copyright (C) 2016 Malf Furious + * + * Scrott is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. + * + * Scrott is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + * License for more details. + */ + +/* * Model web-forms and simplify the process of accepting, validating, and sanitizing input */ class Form diff --git a/app/class/framework.class.php b/app/class/framework.class.php index c773c5e..a3c36cb 100644 --- a/app/class/framework.class.php +++ b/app/class/framework.class.php @@ -1,5 +1,19 @@ <?php +/* + * SCROTT Copyright (C) 2016 Malf Furious + * + * Scrott is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. + * + * Scrott is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + * License for more details. + */ + /* Define Scrott version number */ define("__VERSION__", "v0.0"); diff --git a/app/class/group.class.php b/app/class/group.class.php index 2f3af40..dfa7deb 100644 --- a/app/class/group.class.php +++ b/app/class/group.class.php @@ -1,5 +1,19 @@ <?php +/* + * SCROTT Copyright (C) 2016 Malf Furious + * + * Scrott is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. + * + * Scrott is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + * License for more details. + */ + require_once "class/object.class.php"; /* diff --git a/app/class/issue.class.php b/app/class/issue.class.php index 67bf683..10b1661 100644 --- a/app/class/issue.class.php +++ b/app/class/issue.class.php @@ -1,5 +1,19 @@ <?php +/* + * SCROTT Copyright (C) 2016 Malf Furious + * + * Scrott is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. + * + * Scrott is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + * License for more details. + */ + require_once "class/object.class.php"; /* diff --git a/app/class/message.class.php b/app/class/message.class.php index d39bea8..ac8444c 100644 --- a/app/class/message.class.php +++ b/app/class/message.class.php @@ -1,5 +1,19 @@ <?php +/* + * SCROTT Copyright (C) 2016 Malf Furious + * + * Scrott is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. + * + * Scrott is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + * License for more details. + */ + require_once "class/object.class.php"; /* diff --git a/app/class/model.class.php b/app/class/model.class.php index 85bcf54..7d74b36 100644 --- a/app/class/model.class.php +++ b/app/class/model.class.php @@ -1,5 +1,19 @@ <?php +/* + * SCROTT Copyright (C) 2016 Malf Furious + * + * Scrott is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. + * + * Scrott is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + * License for more details. + */ + require_once "class/framework.class.php"; /* diff --git a/app/class/mysql.class.php b/app/class/mysql.class.php index 317468c..f8f456a 100644 --- a/app/class/mysql.class.php +++ b/app/class/mysql.class.php @@ -1,5 +1,19 @@ <?php +/* + * SCROTT Copyright (C) 2016 Malf Furious + * + * Scrott is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. + * + * Scrott is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + * License for more details. + */ + require_once "class/database.iface.php"; /* diff --git a/app/class/object.class.php b/app/class/object.class.php index bc8a67f..b73a54d 100644 --- a/app/class/object.class.php +++ b/app/class/object.class.php @@ -1,5 +1,19 @@ <?php +/* + * SCROTT Copyright (C) 2016 Malf Furious + * + * Scrott is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. + * + * Scrott is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + * License for more details. + */ + require_once "class/framework.class.php"; /* diff --git a/app/class/pad.class.php b/app/class/pad.class.php index 335ef63..32994e5 100644 --- a/app/class/pad.class.php +++ b/app/class/pad.class.php @@ -1,5 +1,19 @@ <?php +/* + * SCROTT Copyright (C) 2016 Malf Furious + * + * Scrott is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. + * + * Scrott is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + * License for more details. + */ + require_once "class/object.class.php"; /* diff --git a/app/class/setting.class.php b/app/class/setting.class.php index 9cafdfd..c0965a3 100644 --- a/app/class/setting.class.php +++ b/app/class/setting.class.php @@ -1,5 +1,19 @@ <?php +/* + * SCROTT Copyright (C) 2016 Malf Furious + * + * Scrott is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. + * + * Scrott is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + * License for more details. + */ + require_once "class/framework.class.php"; /* diff --git a/app/class/stage.class.php b/app/class/stage.class.php index a2dfba5..1a2aadb 100644 --- a/app/class/stage.class.php +++ b/app/class/stage.class.php @@ -1,5 +1,19 @@ <?php +/* + * SCROTT Copyright (C) 2016 Malf Furious + * + * Scrott is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. + * + * Scrott is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + * License for more details. + */ + require_once "class/object.class.php"; /* diff --git a/app/class/user.class.php b/app/class/user.class.php index 07bd0d6..1185f45 100644 --- a/app/class/user.class.php +++ b/app/class/user.class.php @@ -1,5 +1,19 @@ <?php +/* + * SCROTT Copyright (C) 2016 Malf Furious + * + * Scrott is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. + * + * Scrott is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + * License for more details. + */ + require_once "class/object.class.php"; /* |