3 ///////////////////////////////////////////////////////////////////////////
5 // NOTICE OF COPYRIGHT //
7 // Moodle - Modular Object-Oriented Dynamic Learning Environment //
8 // http://moodle.com //
10 // Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com //
11 // (C) 2001-3001 Eloy Lafuente (stronk7) http://contiento.com //
13 // This program is free software; you can redistribute it and/or modify //
14 // it under the terms of the GNU General Public License as published by //
15 // the Free Software Foundation; either version 2 of the License, or //
16 // (at your option) any later version. //
18 // This program is distributed in the hope that it will be useful, //
19 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
20 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
21 // GNU General Public License for more details: //
23 // http://www.gnu.org/copyleft/gpl.html //
25 ///////////////////////////////////////////////////////////////////////////
27 /// This class will delete completely one sentence
29 class delete_sentence
extends XMLDBAction
{
32 * Init method, every subclass will have its own
37 /// Set own custom attributes
39 /// Get needed strings
40 $this->loadStrings(array(
41 'confirmdeletesentence' => 'xmldb',
48 * Invoke method, every class will have its own
49 * returns true/false on completion, setting both
50 * errormsg and output as necessary
57 /// Set own core attributes
58 $this->does_generate
= ACTION_GENERATE_HTML
;
60 /// These are always here
63 /// Do the job, setting result as needed
65 /// Get the dir containing the file
66 $dirpath = required_param('dir', PARAM_PATH
);
67 $dirpath = $CFG->dirroot
. stripslashes_safe($dirpath);
68 $statementparam = required_param('statement', PARAM_CLEAN
);
69 $sentenceparam = required_param('sentence', PARAM_INT
);
71 $confirmed = optional_param('confirmed', false, PARAM_BOOL
);
73 /// If not confirmed, show confirmation box
75 $o = '<table width="60" class="generalbox" border="0" cellpadding="5" cellspacing="0" id="notice">';
76 $o.= ' <tr><td class="generalboxcontent">';
77 $o.= ' <p class="centerpara">' . $this->str
['confirmdeletesentence'] . '</p>';
78 $o.= ' <table class="boxaligncenter" cellpadding="20"><tr><td>';
79 $o.= ' <div class="singlebutton">';
80 $o.= ' <form action="index.php?action=delete_sentence&confirmed=yes&postaction=edit_statement&sentence=' . $sentenceparam . '&statement=' . urlencode($statementparam) . '&dir=' . urlencode(str_replace($CFG->dirroot
, '', $dirpath)) . '" method="post"><fieldset class="invisiblefieldset">';
81 $o.= ' <input type="submit" value="'. $this->str
['yes'] .'" /></fieldset></form></div>';
83 $o.= ' <div class="singlebutton">';
84 $o.= ' <form action="index.php?action=edit_statement&statement=' . urlencode($statementparam) . '&dir=' . urlencode(str_replace($CFG->dirroot
, '', $dirpath)) . '" method="post"><fieldset class="invisiblefieldset">';
85 $o.= ' <input type="submit" value="'. $this->str
['no'] .'" /></fieldset></form></div>';
93 /// Get the edited dir
94 if (!empty($XMLDB->editeddirs
)) {
95 if (isset($XMLDB->editeddirs
[$dirpath])) {
96 $dbdir =& $XMLDB->dbdirs
[$dirpath];
97 $editeddir =& $XMLDB->editeddirs
[$dirpath];
99 $structure =& $editeddir->xml_file
->getStructure();
100 $statements =& $structure->getStatements();
101 $statement =& $structure->getStatement($statementparam);
102 $sentences =& $statement->getSentences();
103 /// Remove the sentence
104 unset ($sentences[$sentenceparam]);
106 /// The statement has changed
107 $statement->setChanged(true);
109 /// Recalculate the hash
110 $structure->calculateHash(true);
112 /// If the hash has changed from the original one, change the version
113 /// and mark the structure as changed
114 $origstructure =& $dbdir->xml_file
->getStructure();
115 if ($structure->getHash() != $origstructure->getHash()) {
116 $structure->setVersion(userdate(time(), '%Y%m%d', 99, false));
117 $structure->setChanged(true);
124 /// Launch postaction if exists (leave this here!)
125 if ($this->getPostAction() && $result) {
126 return $this->launch($this->getPostAction());
129 /// Return ok if arrived here