diff options
author | Malf Furious <m@lfurio.us> | 2018-07-21 21:43:20 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-07-21 21:43:20 -0400 |
commit | 70bcac2648a51989e1184d9eeead766def999f8b (patch) | |
tree | 2afd90fc0e0df014ffa7162e78edf860fd3f0cf6 /app/model | |
parent | 8ed0fa2b4f9b6e7d085a7ed633864a0a4d4141a4 (diff) | |
download | scrott-70bcac2648a51989e1184d9eeead766def999f8b.tar.gz scrott-70bcac2648a51989e1184d9eeead766def999f8b.zip |
Add new group modal view/model code
Diffstat (limited to 'app/model')
-rw-r--r-- | app/model/datamods.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/app/model/datamods.php b/app/model/datamods.php new file mode 100644 index 0000000..01311a8 --- /dev/null +++ b/app/model/datamods.php @@ -0,0 +1,32 @@ +<?php + +/* + * SCROTT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + * + * For more information, please refer to UNLICENSE + */ + +require_once "class/form.class.php"; +require_once "class/group.class.php"; + +/* + * Action: dm-group-add - New group modal + */ +if (isAction("dm-group-add")) +{ + $form = new form(); + $form->text("name"); + + if (!$form->populate(input())) + return; + + $group = group::initNew($form->name, user::getCurrent()); +} + +?> |