Dotclear

source: admin/blog_del.php @ 1179:a43a29427ef3

Revision 1179:a43a29427ef3, 1.9 KB checked in by franck <carnet.franck.paul@…>, 12 years ago (diff)

Update copyright notice

Line 
1<?php
2# -- BEGIN LICENSE BLOCK ---------------------------------------
3#
4# This file is part of Dotclear 2.
5#
6# Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear
7# Licensed under the GPL version 2.0 license.
8# See LICENSE file or
9# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
10#
11# -- END LICENSE BLOCK -----------------------------------------
12
13require dirname(__FILE__).'/../inc/admin/prepend.php';
14
15dcPage::checkSuper();
16
17$blog_id = '';
18$blog_name = '';
19
20if (!empty($_POST['blog_id']))
21{
22     try {
23          $rs = $core->getBlog($_POST['blog_id']);
24     } catch (Exception $e) {
25          $core->error->add($e->getMessage());
26     }
27     
28     if ($rs->isEmpty()) {
29          $core->error->add(__('No such blog ID'));
30     } else {
31          $blog_id = $rs->blog_id;
32          $blog_name = $rs->blog_name;
33     }
34}
35
36# Delete the blog
37if (!$core->error->flag() && $blog_id && !empty($_POST['del']))
38{
39     if (!$core->auth->checkPassword(crypt::hmac(DC_MASTER_KEY,$_POST['pwd']))) {
40          $core->error->add(__('Password verification failed'));
41     } else {
42          try {
43               $core->delBlog($blog_id);
44               http::redirect('blogs.php?del=1');
45          } catch (Exception $e) {
46               $core->error->add($e->getMessage());
47          }
48     }
49}
50
51dcPage::open('Delete a blog');
52
53if (!$core->error->flag())
54{
55     echo
56     '<h2 class="page-title">'.__('Delete a blog').'</h2>'.
57     '<p class="message">'.__('Warning').'</p>'.
58     '<p>'.sprintf(__('You are about to delete the blog %s. Every entry, comment and category will be deleted.'),
59     '<strong>'.$blog_id.' ('.$blog_name.')</strong>').'</p>'.
60     '<p>'.__('Please give your password to confirm the blog deletion.').'</p>';
61     
62     echo
63     '<form action="blog_del.php" method="post">'.
64     '<div>'.$core->formNonce().'</div>'.
65     '<p><label for="pwd">'.__('Your password:').' '.
66     form::password('pwd',20,255).'</label></p>'.
67     '<p><input type="submit" class="delete" name="del" value="'.__('Delete this blog').'" />'.
68     form::hidden('blog_id',$blog_id).'</p>'.
69     '</form>';
70}
71
72dcPage::close();
73?>
Note: See TracBrowser for help on using the repository browser.

Sites map