diff options
author | Malf Furious <m@lfurio.us> | 2016-05-30 00:18:46 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-05-30 00:18:46 -0400 |
commit | 827a8025ab48dea386b77717f1d1bc30d10ba232 (patch) | |
tree | 0577841f1948ff59e714e4a7fa63cd15f77e06c0 /app/class | |
parent | abd11313d0a9f2b28d7b709fcbd98befd95db15c (diff) | |
parent | 184dafca7c2bb455d03cbd0334942e504d635cfe (diff) | |
download | scrott-827a8025ab48dea386b77717f1d1bc30d10ba232.tar.gz scrott-827a8025ab48dea386b77717f1d1bc30d10ba232.zip |
Merge branch 'support/version-meta' into dev
Diffstat (limited to '')
-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 | 17 | ||||
-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, 213 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 4223d68..a3c36cb 100644 --- a/app/class/framework.class.php +++ b/app/class/framework.class.php @@ -1,5 +1,22 @@ <?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"); + /* Include the Scrott system-level configuration file if it exists */ is_file("scrott.conf.php") && require_once "scrott.conf.php"; 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"; /* |