24 lines
576 B
PHP
24 lines
576 B
PHP
<?php
|
|
if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true) die();
|
|
|
|
use Bitrix\Main\Localization\Loc;
|
|
|
|
if ($ex = $APPLICATION->GetException())
|
|
{
|
|
\CAdminMessage::ShowMessage(array(
|
|
'TYPE' => 'ERROR',
|
|
'MESSAGE' => Loc::getMessage('MOD_UNINST_ERR'),
|
|
'DETAILS' => $ex->GetString(),
|
|
'HTML' => true,
|
|
));
|
|
}
|
|
else
|
|
{
|
|
\CAdminMessage::ShowNote(Loc::getMessage('MOD_UNINST_OK'));
|
|
}
|
|
?>
|
|
<form action="<?= $APPLICATION->GetCurPage()?>">
|
|
<input type="hidden" name="lang" value="<?= LANG ?>">
|
|
<input type="submit" name="" value="<?= Loc::getMessage("MOD_BACK") ?>">
|
|
<form>
|