function removePageAttachmentPermanently($pageTitle, $attachmentName, $rvt)
{
    $requestHandler = new \PageAttachment\RequestHandler();
    $ajaxResponse = new \AjaxResponse($requestHandler->removeAttachmentPermanently($pageTitle, $attachmentName, $rvt));
    setAjaxCacheDuration($ajaxResponse);
    return $ajaxResponse;
}
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the
 *     Free Software Foundation, Inc.,
 *     51 Franklin Street, Fifth Floor
 *     Boston, MA 02110-1301, USA.
 *     http://www.gnu.org/copyleft/gpl.html
 *
 */
namespace PageAttachment\Download;

# Initialize MediaWiki common code
$mediaWikiBaseDir = dirname(__FILE__) . '/../../..';
chdir($mediaWikiBaseDir);
$preIP = \getcwd();
require_once "{$preIP}/includes/WebStart.php";
# Initialize MediaWiki base class
require_once "{$preIP}/includes/Wiki.php";
$mediaWiki = new \MediaWiki();
// Stream the requested file
$requestHandler = new \PageAttachment\RequestHandler();
$requestHandler->sendRequestedFile();
exit;
## :: END ::