| [ Index ] |
PHP Cross Reference of Moodle 1.9.3 [Build 15-Oct-2008] |
[Summary view] [Print] [Text view]
1 <?php // $Id: delete_table.class.php,v 1.5 2007/10/10 05:25:23 nicolasconnault Exp $ 2 3 /////////////////////////////////////////////////////////////////////////// 4 // // 5 // NOTICE OF COPYRIGHT // 6 // // 7 // Moodle - Modular Object-Oriented Dynamic Learning Environment // 8 // http://moodle.com // 9 // // 10 // Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com // 11 // (C) 2001-3001 Eloy Lafuente (stronk7) http://contiento.com // 12 // // 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. // 17 // // 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: // 22 // // 23 // http://www.gnu.org/copyleft/gpl.html // 24 // // 25 /////////////////////////////////////////////////////////////////////////// 26 27 /// This class will delete completely one table 28 29 class delete_table extends XMLDBAction { 30 31 /** 32 * Init method, every subclass will have its own 33 */ 34 function init() { 35 parent::init(); 36 37 /// Set own custom attributes 38 39 /// Get needed strings 40 $this->loadStrings(array( 41 'confirmdeletetable' => 'xmldb', 42 'yes' => '', 43 'no' => '' 44 )); 45 } 46 47 /** 48 * Invoke method, every class will have its own 49 * returns true/false on completion, setting both 50 * errormsg and output as necessary 51 */ 52 function invoke() { 53 parent::invoke(); 54 55 $result = true; 56 57 /// Set own core attributes 58 $this->does_generate = ACTION_GENERATE_HTML; 59 60 /// These are always here 61 global $CFG, $XMLDB; 62 63 /// Do the job, setting result as needed 64 65 /// Get the dir containing the file 66 $dirpath = required_param('dir', PARAM_PATH); 67 $dirpath = $CFG->dirroot . stripslashes_safe($dirpath); 68 $tableparam = required_param('table', PARAM_CLEAN); 69 70 $confirmed = optional_param('confirmed', false, PARAM_BOOL); 71 72 /// If not confirmed, show confirmation box 73 if (!$confirmed) { 74 $o = '<table width="60" class="generalbox" border="0" cellpadding="5" cellspacing="0" id="notice">'; 75 $o.= ' <tr><td class="generalboxcontent">'; 76 $o.= ' <p class="centerpara">' . $this->str['confirmdeletetable'] . '<br /><br />' . $tableparam . '</p>'; 77 $o.= ' <table class="boxaligncenter" cellpadding="20"><tr><td>'; 78 $o.= ' <div class="singlebutton">'; 79 $o.= ' <form action="index.php?action=delete_table&confirmed=yes&postaction=edit_xml_file&table=' . $tableparam . '&dir=' . urlencode(str_replace($CFG->dirroot, '', $dirpath)) . '" method="post"><fieldset class="invisiblefieldset">'; 80 $o.= ' <input type="submit" value="'. $this->str['yes'] .'" /></fieldset></form></div>'; 81 $o.= ' </td><td>'; 82 $o.= ' <div class="singlebutton">'; 83 $o.= ' <form action="index.php?action=edit_xml_file&dir=' . urlencode(str_replace($CFG->dirroot, '', $dirpath)) . '" method="post"><fieldset class="invisiblefieldset">'; 84 $o.= ' <input type="submit" value="'. $this->str['no'] .'" /></fieldset></form></div>'; 85 $o.= ' </td></tr>'; 86 $o.= ' </table>'; 87 $o.= ' </td></tr>'; 88 $o.= '</table>'; 89 90 $this->output = $o; 91 } else { 92 /// Get the edited dir 93 if (!empty($XMLDB->editeddirs)) { 94 if (isset($XMLDB->editeddirs[$dirpath])) { 95 $dbdir =& $XMLDB->dbdirs[$dirpath]; 96 $editeddir =& $XMLDB->editeddirs[$dirpath]; 97 if ($editeddir) { 98 $structure =& $editeddir->xml_file->getStructure(); 99 /// Remove the table 100 $structure->deleteTable($tableparam); 101 } 102 } 103 } 104 } 105 106 /// Launch postaction if exists (leave this here!) 107 if ($this->getPostAction() && $result) { 108 return $this->launch($this->getPostAction()); 109 } 110 111 /// Return ok if arrived here 112 return $result; 113 } 114 } 115 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Jan 14 11:33:29 2009 | Cross-referenced by PHPXref 0.7 |