Example #1
0
     if ('ERROR' == $arCheckIBlockType['RESULT']) {
         $bVarsFromForm = true;
         $strWarning .= $arCheckIBlockType['MESSAGE'] . '<br>';
     } else {
         $OF_IBLOCK_TYPE_ID = $arCheckIBlockType['VALUE'];
         $OF_CREATE_IBLOCK_TYPE_ID = 'N';
     }
 }
 $ibp = new CIBlockProperty();
 if (!$bVarsFromForm) {
     $intCountOFProp = intval($OFFERS_PROPERTY_COUNT);
     $arOfPropList = array();
     for ($i = 0; $i < $intCountOFProp; $i++) {
         $arOFProperty = GetPropertyInfo($strPREFIX_OF_PROPERTY, 'n' . $i, true, $arHiddenPropFields);
         if (false !== $arOFProperty) {
             $res = $ibp->CheckFields($arOFProperty, false, true);
             if (!$res) {
                 $strWarning .= GetMessage("IB_E_PROPERTY_ERROR") . ": " . $ibp->LAST_ERROR . "<br>";
                 $bVarsFromForm = true;
             }
             $arOfPropList[] = $arOFProperty;
         }
     }
 }
 if (!$bVarsFromForm) {
     $arOffersFields = array("ACTIVE" => 'Y', "NAME" => $OF_IBLOCK_NAME, "IBLOCK_TYPE_ID" => $OF_IBLOCK_TYPE_ID, "LID" => $LID, "WORKFLOW" => "N", "BIZPROC" => "N", "LIST_PAGE_URL" => '', "SECTION_PAGE_URL" => '', "DETAIL_PAGE_URL" => '#PRODUCT_URL#', "INDEX_SECTION" => "N");
     $arOffersFields["RIGHTS_MODE"] = $RIGHTS_MODE;
     if ($arOffersFields["RIGHTS_MODE"] == "E") {
         if (is_array($_POST["RIGHTS"])) {
             $arOffersFields["RIGHTS"] = array();
             $s_rights = new CIBlockRights($ID);