1
0
mirror of synced 2024-11-22 13:26:10 +03:00
bitrix-module/intaro.retailcrm/install/step1.php

63 lines
2.6 KiB
PHP
Raw Normal View History

<?php
use Intaro\RetailCrm\Component\Constants;
IncludeModuleLangFile(__FILE__);
2013-07-05 18:19:42 +04:00
if (isset($arResult['errCode']) && $arResult['errCode']) {
$message = GetMessage($arResult['errCode']);
if ($message) {
echo CAdminMessage::ShowMessage($message);
} else {
echo CAdminMessage::ShowMessage(['MESSAGE' => $arResult['errCode'], 'HTML' => true]);
}
}
2020-04-24 13:18:18 +03:00
$arResult['API_HOST'] = COption::GetOptionString(Constants::MODULE_ID, Constants::CRM_API_HOST_OPTION);
$arResult['API_KEY'] = COption::GetOptionString(Constants::MODULE_ID, Constants::CRM_API_KEY_OPTION);
2013-07-24 14:44:48 +04:00
?>
2013-07-05 18:19:42 +04:00
<div class="adm-detail-content-item-block">
<form action="<?php echo $APPLICATION->GetCurPage() ?>" method="POST">
<?php echo bitrix_sessid_post(); ?>
<input type="hidden" name="lang" value="<?php echo LANGUAGE_ID ?>">
2016-09-15 16:42:10 +03:00
<input type="hidden" name="id" value="intaro.retailcrm">
2013-07-05 18:19:42 +04:00
<input type="hidden" name="install" value="Y">
2015-03-03 16:37:34 +03:00
<input type="hidden" name="step" value="11">
2013-07-05 18:19:42 +04:00
<table class="adm-detail-content-table edit-table" id="edit1_edit_table">
<tbody>
2013-07-18 14:32:10 +04:00
<tr class="heading">
<td colspan="2">
<b><?php echo GetMessage('STEP_NAME'); ?></b>
</td>
</tr>
<tr align="center">
<td colspan="2"><b><?php echo GetMessage('INFO_1'); ?></b></td>
</tr>
<tr align="center">
<td colspan="2"><b><?php echo GetMessage('INFO_2'); ?></b></td>
</tr>
<tr align="center">
<td colspan="2">&nbsp;</td>
</tr>
<tr>
<td width="50%" class="adm-detail-content-cell-l"><?php echo GetMessage('ICRM_API_HOST'); ?></td>
2016-09-15 16:42:10 +03:00
<td width="50%" class="adm-detail-content-cell-r"><input type="text" id="api_host" name="api_host" value="<?php if(isset($arResult['API_HOST'])) echo $arResult['API_HOST'];?>"></td>
2013-07-18 14:32:10 +04:00
</tr>
<tr>
<td width="50%" class="adm-detail-content-cell-l"><?php echo GetMessage('ICRM_API_KEY'); ?></td>
2016-09-15 16:42:10 +03:00
<td width="50%" class="adm-detail-content-cell-r"><input type="text" id="api_key" name="api_key" value="<?php if(isset($arResult['API_KEY'])) echo $arResult['API_KEY'];?>"></td>
2013-07-18 14:32:10 +04:00
</tr>
</tbody>
</table>
2013-07-05 18:19:42 +04:00
<br />
2013-07-18 14:32:10 +04:00
<div style="padding: 1px 13px 2px; height:28px;">
<div align="right" style="float:right; position:relative;">
<input type="submit" name="inst" value="<?php echo GetMessage("MOD_NEXT_STEP"); ?>" class="adm-btn-save">
</div>
</div>
2013-07-05 18:19:42 +04:00
</form>
</div>