Example #1
0
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 */
require_once "Libs/autoload.php";
$config = new Config();
$webPage = new PJSWebPage($config->getTitle() . ' - Delete Note');
$act = Tools::Param('act');
if ("Delete Note" === $act) {
    $noteModel = new NoteModel();
    $noteModel->populateFromForm();
    if (!$noteModel->validateForDelete()) {
        $noteView = new NoteFormView('Delete Note', $noteModel);
        $body = "<h2>Invalid data</h2>\n" . $noteView->getForm();
    } else {
        $noteController = new NoteController();
        $noteController->delete($noteModel);
        $body = "Deleted note # " . $noteModel->getId() . "<br />\n";
    }
} else {
    $noteController = new NoteController();
    $noteModel = $noteController->get(Tools::param('id'));
    $noteView = new NoteFormView('Delete Note', $noteModel);
    $body = $noteView->getForm();
}
$webPage->setBody($body);
$webPage->displayPage();