summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.txt4
-rw-r--r--todo/deleteacct.mod.php63
-rw-r--r--todo/group.view.php43
3 files changed, 2 insertions, 108 deletions
diff --git a/README.txt b/README.txt
index 3d0c354..6d788bd 100644
--- a/README.txt
+++ b/README.txt
@@ -35,11 +35,11 @@ serve these files instead.
Arrange for the file 'app/cron.php' to be run periodically. It performs
tasks such as cleaning up old database objects.
-Navegate to your installation in a web browser. You should be presented with a
+Navigate to your installation in a web browser. You should be presented with a
page stating "Welcome to Scrott"! Enter your database parameters here. The next
page allows you to register the first administrator user.
-Once a single administrator user exists, installation is complete. Navegating
+Once a single administrator user exists, installation is complete. Navigating
to the site signed-out should show only the login page. Additional account
registration can be enabled via the admin general settings tab.
diff --git a/todo/deleteacct.mod.php b/todo/deleteacct.mod.php
deleted file mode 100644
index 0178c95..0000000
--- a/todo/deleteacct.mod.php
+++ /dev/null
@@ -1,63 +0,0 @@
-<?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";
-
-class DeleteacctModel extends CommonModel
-{
- /*
- * Default action
- */
- function deflt()
- {
- }
-
- /*
- * Delete current user's account
- */
- function del($input)
- {
- $form = new Form();
- $form->field_text("password", null, false);
-
- if (!$form->populate($input))
- {
- $this->logFormErrors($form);
- return;
- }
-
- $user = $this->getCurrentUser();
-
- if (!$user->validatePassword($form->password))
- {
- $this->logError("Account not deleted - Password was incorrect");
- return;
- }
-
- if ($user->admin && $user->getNumAdmins() == 1)
- {
- $this->logError("Account not deleted - Cannot remove the last admin account");
- return;
- }
-
- $user->delObj();
- $this->redirectTo($this->ar() . "/");
- }
-}
-
-?>
diff --git a/todo/group.view.php b/todo/group.view.php
deleted file mode 100644
index dde4df1..0000000
--- a/todo/group.view.php
+++ /dev/null
@@ -1,43 +0,0 @@
-<!--
- * 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.
--->
-
-<!DOCTYPE html>
-
-<html lang="en">
- <head>
- <?php include "view/common/head.view.php"; ?>
- <title>Scrott - <?=$mod->group->name?></title>
- </head>
-
- <body>
- <?php include "view/common/topp.view.php"; ?>
-
- <div class="container">
- <div class="well well-lg">
- <h1><?=$mod->group->name?></h1>
- <img src="<?=$mod->owner->getHeadImage()?>" alt="<?=$mod->owner->getDisplayName()?>" class="img-circle" height="50" />
-
- <?php if (count($mod->members)) { ?>
- <span class="glyphicon glyphicon-plus"></span>
- <?php } ?>
-
- <?php foreach ($mod->members as $member) { ?>
- <img src="<?=$member->getHeadImage()?>" alt="<?=$member->getDisplayName()?>" class="img-circle" height="50" />
- <?php } ?>
- </div>
- </div>
-
- <?php include "view/common/foot.view.php"; ?>
- </body>
-</html>