1 <?php
2
3 /*
4 * This file is part of the Icybee package.
5 *
6 * (c) Olivier Laviale <olivier.laviale@gmail.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12 namespace Icybee\Modules\Sites;
13
14 /**
15 * Deletes a website.
16 */
17 class DeleteOperation extends \ICanBoogie\DeleteOperation
18 {
19 protected function process()
20 {
21 global $core;
22
23 $rc = parent::process();
24
25 unset($core->vars['cached_sites']);
26
27 return $rc;
28 }
29 }