Delete old Export to ICML
This commit is contained in:
parent
14dce123c4
commit
e6c8e49fc1
File diff suppressed because it is too large
Load Diff
@ -1,173 +0,0 @@
|
|||||||
<?
|
|
||||||
//<title>IntaroCRM</title>
|
|
||||||
__IncludeLang(GetLangFileName($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/intaro.intarocrm/lang/", "/export_setup_templ.php"));
|
|
||||||
|
|
||||||
global $APPLICATION;
|
|
||||||
|
|
||||||
$arSetupErrors = array();
|
|
||||||
if (($ACTION == 'EXPORT_EDIT' || $ACTION == 'EXPORT_COPY') && $STEP == 1)
|
|
||||||
{
|
|
||||||
if (isset($arOldSetupVars['YANDEX_EXPORT']))
|
|
||||||
$YANDEX_EXPORT = $arOldSetupVars['YANDEX_EXPORT'];
|
|
||||||
if (isset($arOldSetupVars['SETUP_FILE_NAME']))
|
|
||||||
$SETUP_FILE_NAME = $arOldSetupVars['SETUP_FILE_NAME'];
|
|
||||||
if (isset($arOldSetupVars['SETUP_PROFILE_NAME']))
|
|
||||||
$SETUP_PROFILE_NAME = $arOldSetupVars['SETUP_PROFILE_NAME'];
|
|
||||||
if (isset($arOldSetupVars['SETUP_SERVER_NAME']))
|
|
||||||
$SETUP_SERVER_NAME = $arOldSetupVars['SETUP_SERVER_NAME'];
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($STEP>1)
|
|
||||||
{
|
|
||||||
if (!is_array($YANDEX_EXPORT) || count($YANDEX_EXPORT)<=0)
|
|
||||||
{
|
|
||||||
$arSetupErrors[] = GetMessage("CET_ERROR_NO_IBLOCKS");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strlen($SETUP_FILE_NAME)<=0)
|
|
||||||
{
|
|
||||||
$arSetupErrors[] = GetMessage("CET_ERROR_NO_FILENAME");
|
|
||||||
}
|
|
||||||
elseif (preg_match(BX_CATALOG_FILENAME_REG,$SETUP_FILE_NAME))
|
|
||||||
{
|
|
||||||
$arSetupErrors[] = GetMessage("CES_ERROR_BAD_EXPORT_FILENAME");
|
|
||||||
}
|
|
||||||
elseif ($APPLICATION->GetFileAccessPermission($SETUP_FILE_NAME) < "W")
|
|
||||||
{
|
|
||||||
$arSetupErrors[] = str_replace("#FILE#", $SETUP_FILE_NAME, GetMessage('CET_YAND_RUN_ERR_SETUP_FILE_ACCESS_DENIED'));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (($ACTION=="EXPORT_SETUP" || $ACTION == 'EXPORT_EDIT' || $ACTION == 'EXPORT_COPY') && strlen($SETUP_PROFILE_NAME)<=0)
|
|
||||||
{
|
|
||||||
$arSetupErrors[] = GetMessage("CET_ERROR_NO_PROFILE_NAME");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($arSetupErrors))
|
|
||||||
{
|
|
||||||
$STEP = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($arSetupErrors))
|
|
||||||
echo ShowError(implode('<br />', $arSetupErrors));
|
|
||||||
|
|
||||||
if ($STEP==1)
|
|
||||||
{
|
|
||||||
if (CModule::IncludeModule("iblock"))
|
|
||||||
{
|
|
||||||
// Get IBlock list
|
|
||||||
?>
|
|
||||||
<form method="POST" action="<? echo $APPLICATION->GetCurPage(); ?>" enctype="multipart/form-data" name="dataload">
|
|
||||||
<? echo bitrix_sessid_post(); ?>
|
|
||||||
<?if ($ACTION == 'EXPORT_EDIT' || $ACTION == 'EXPORT_COPY')
|
|
||||||
{
|
|
||||||
?><input type="hidden" name="PROFILE_ID" value="<? echo intval($PROFILE_ID); ?>"><?
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
<table width="100%">
|
|
||||||
<tr>
|
|
||||||
<td valign="top">
|
|
||||||
<?
|
|
||||||
if (!isset($YANDEX_EXPORT) || !is_array($YANDEX_EXPORT))
|
|
||||||
{
|
|
||||||
$YANDEX_EXPORT = array();
|
|
||||||
}
|
|
||||||
$boolAll = false;
|
|
||||||
$intCountChecked = 0;
|
|
||||||
$intCountAvailIBlock = 0;
|
|
||||||
$arIBlockList = array();
|
|
||||||
$db_res = CIBlock::GetList(Array("IBLOCK_TYPE"=>"ASC", "NAME"=>"ASC"),array('CHECK_PERMISSIONS' => 'Y','MIN_PERMISSION' => 'W'));
|
|
||||||
while ($res = $db_res->Fetch())
|
|
||||||
{
|
|
||||||
if ($ar_res1 = CCatalog::GetByID($res["ID"]))
|
|
||||||
{
|
|
||||||
$arSiteList = array();
|
|
||||||
$rsSites = CIBlock::GetSite($res["ID"]);
|
|
||||||
while ($arSite = $rsSites->Fetch())
|
|
||||||
{
|
|
||||||
$arSiteList[] = $arSite["SITE_ID"];
|
|
||||||
}
|
|
||||||
|
|
||||||
$boolYandex = (in_array($res['ID'],$YANDEX_EXPORT));
|
|
||||||
$arIBlockList[] = array(
|
|
||||||
'ID' => $res['ID'],
|
|
||||||
'NAME' => $res['NAME'],
|
|
||||||
'IBLOCK_TYPE_ID' => $res['IBLOCK_TYPE_ID'],
|
|
||||||
'YANDEX_EXPORT' => $boolYandex,
|
|
||||||
'SITE_LIST' => '('.implode(' ',$arSiteList).')',
|
|
||||||
);
|
|
||||||
if ($boolYandex)
|
|
||||||
$intCountChecked++;
|
|
||||||
$intCountAvailIBlock++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ($intCountChecked == $intCountAvailIBlock)
|
|
||||||
$boolAll = true;
|
|
||||||
?>
|
|
||||||
|
|
||||||
<?
|
|
||||||
foreach ($arIBlockList as $key => $arIBlock)
|
|
||||||
{
|
|
||||||
?>
|
|
||||||
<input type="hidden" name="YANDEX_EXPORT[<? echo $key; ?>]" id="YANDEX_EXPORT_<? echo $key; ?>" value="<? echo $arIBlock["ID"]; ?>" checked>
|
|
||||||
<?
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
<input type="hidden" name="count_checked" id="count_checked" value="<? echo $intCountChecked; ?>">
|
|
||||||
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td width="0%" valign="top"></td>
|
|
||||||
<td width="100%" valign="top">
|
|
||||||
<font class="text">
|
|
||||||
<?echo GetMessage("CET_SAVE_FILENAME");?> <input type="text" name="SETUP_FILE_NAME" value="<?echo htmlspecialcharsbx(strlen($SETUP_FILE_NAME)>0 ? $SETUP_FILE_NAME : (COption::GetOptionString("catalog", "export_default_path", "/bitrix/catalog_export/"))."intarocrm"/* .mt_rand(0, 999999) */.".php"); ?>" size="50">
|
|
||||||
</font>
|
|
||||||
<br><br>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<?if ($ACTION=="EXPORT_SETUP" || $ACTION == 'EXPORT_EDIT' || $ACTION == 'EXPORT_COPY'):?>
|
|
||||||
<tr>
|
|
||||||
<td width="0%" valign="top">
|
|
||||||
<font class="text" style="font-size: 20px;">4. </font>
|
|
||||||
</td>
|
|
||||||
<td width="100%" valign="top">
|
|
||||||
<font class="text">
|
|
||||||
<?echo GetMessage("CET_PROFILE_NAME");?> <input type="text" name="SETUP_PROFILE_NAME" value="<?echo htmlspecialcharsbx($SETUP_PROFILE_NAME)?>" size="30">
|
|
||||||
</font>
|
|
||||||
<br><br>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<?endif;?>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td width="0%" valign="top">
|
|
||||||
|
|
||||||
</td>
|
|
||||||
<td width="100%" valign="top">
|
|
||||||
<input type="hidden" name="lang" value="<?echo LANGUAGE_ID ?>">
|
|
||||||
<input type="hidden" name="ACT_FILE" value="<?echo htmlspecialchars($_REQUEST["ACT_FILE"]) ?>">
|
|
||||||
<input type="hidden" name="ACTION" value="<?echo htmlspecialchars($ACTION) ?>">
|
|
||||||
<input type="hidden" name="STEP" value="<?echo intval($STEP) + 1 ?>">
|
|
||||||
<input type="hidden" name="SETUP_FIELDS_LIST" value="YANDEX_EXPORT,SETUP_SERVER_NAME,SETUP_FILE_NAME">
|
|
||||||
<input type="submit" value="<?echo ($ACTION=="EXPORT")?GetMessage("CET_EXPORT"):GetMessage("CET_SAVE")?>">
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</form>
|
|
||||||
<?
|
|
||||||
}
|
|
||||||
}
|
|
||||||
elseif ($STEP==2)
|
|
||||||
{
|
|
||||||
$SETUP_SERVER_NAME = htmlspecialcharsbx($SETUP_SERVER_NAME);
|
|
||||||
$_POST['SETUP_SERVER_NAME'] = htmlspecialcharsbx($_POST['SETUP_SERVER_NAME']);
|
|
||||||
$_REQUEST['SETUP_SERVER_NAME'] = htmlspecialcharsbx($_REQUEST['SETUP_SERVER_NAME']);
|
|
||||||
|
|
||||||
$FINITE = true;
|
|
||||||
}
|
|
||||||
?>
|
|
Loading…
Reference in New Issue
Block a user