diff options
Diffstat (limited to '')
-rw-r--r-- | app/model/auth.mod.php | 14 | ||||
-rw-r--r-- | app/model/common.mod.php | 14 | ||||
-rw-r--r-- | app/model/dashboard.mod.php | 14 | ||||
-rw-r--r-- | app/model/deauth.mod.php | 14 | ||||
-rw-r--r-- | app/model/deleteacct.mod.php | 14 | ||||
-rw-r--r-- | app/model/except.mod.php | 14 | ||||
-rw-r--r-- | app/model/master.mod.php | 14 | ||||
-rw-r--r-- | app/model/sysconf.mod.php | 14 |
8 files changed, 112 insertions, 0 deletions
diff --git a/app/model/auth.mod.php b/app/model/auth.mod.php index 23b8288..000db95 100644 --- a/app/model/auth.mod.php +++ b/app/model/auth.mod.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 "model/common.mod.php"; require_once "class/user.class.php"; require_once "class/form.class.php"; diff --git a/app/model/common.mod.php b/app/model/common.mod.php index 5e6373c..3d8c200 100644 --- a/app/model/common.mod.php +++ b/app/model/common.mod.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 "model/master.mod.php"; require_once "class/form.class.php"; require_once "class/setting.class.php"; diff --git a/app/model/dashboard.mod.php b/app/model/dashboard.mod.php index 845a56a..00fb759 100644 --- a/app/model/dashboard.mod.php +++ b/app/model/dashboard.mod.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 "model/common.mod.php"; class DashboardModel extends CommonModel diff --git a/app/model/deauth.mod.php b/app/model/deauth.mod.php index d3eb7c1..8991606 100644 --- a/app/model/deauth.mod.php +++ b/app/model/deauth.mod.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/model.class.php"; class DeauthModel extends Model diff --git a/app/model/deleteacct.mod.php b/app/model/deleteacct.mod.php index 89aca14..0178c95 100644 --- a/app/model/deleteacct.mod.php +++ b/app/model/deleteacct.mod.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 "model/common.mod.php"; require_once "class/form.class.php"; require_once "class/user.class.php"; diff --git a/app/model/except.mod.php b/app/model/except.mod.php index 13a67be..fb81315 100644 --- a/app/model/except.mod.php +++ b/app/model/except.mod.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 "model/master.mod.php"; class ExceptModel extends MasterModel diff --git a/app/model/master.mod.php b/app/model/master.mod.php index aebcaaa..5aaafa8 100644 --- a/app/model/master.mod.php +++ b/app/model/master.mod.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/model.class.php"; class MasterModel extends Model diff --git a/app/model/sysconf.mod.php b/app/model/sysconf.mod.php index fafc4d7..cfbed42 100644 --- a/app/model/sysconf.mod.php +++ b/app/model/sysconf.mod.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 "model/master.mod.php"; require_once "class/form.class.php"; |