Move name cleaning function to a common place
[vanilla-miry.git] / ajax / switchextension.php
blob581bb74a202752082897c773a5c9edae770a6e57
1 <?php
2 /*
3 * Copyright 2003 Mark O'Sullivan
4 * This file is part of Vanilla.
5 * Vanilla 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 2 of the License, or (at your option) any later version.
6 * Vanilla is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
7 * You should have received a copy of the GNU General Public License along with Vanilla; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
8 * The latest source code for Vanilla is available at www.lussumo.com
9 * Contact Mark O'Sullivan at mark [at] lussumo [dot] com
11 * Description: File used by the Extension management form to handle turning extensions on and off
14 include('../appg/settings.php');
15 include('../appg/init_ajax.php');
17 $PostBackKey = ForceIncomingString('PostBackKey', '');
18 $ExtensionKey = ForceIncomingString('ExtensionKey', '');
19 if ($PostBackKey != ''
20 && $PostBackKey == $Context->Session->GetCsrfValidationKey()
21 ) {
22 $ExtensionForm = $Context->ObjectFactory->CreateControl($Context, 'ExtensionForm');
23 if ($ExtensionForm->SwitchExtension($ExtensionKey)) {
24 echo $ExtensionKey;
25 } else {
26 $Context->WarningCollector->WritePlain();
28 } else {
29 echo $Context->GetDefinition('ErrPostBackKeyInvalid');
31 $Context->Unload();