F
F
Franco Mannino2017-02-20 08:00:51
1C-Bitrix
Franco Mannino, 2017-02-20 08:00:51

How to see (find) an infoblock element by ID in the Bitrix Admin if it is not known in which infoblock it is located?

How to see (find) an infoblock element by ID in the Bitrix Admin if it is not known in which infoblock it is located, and it is not even known if an element with such an ID even exists?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Andrey Tikhonov, 2017-02-20
@garinov

<your site>/bitrix/admin/iblock_redirect_entity.php?lang=ru
in the admin panel it is possible to do this!
in the id of the entity, specify the id of the element
eda7c60eda1e4476809ccdd41b2bdae1.png

N
Nikita, 2017-02-20
@Rema1ns

but in the admin panel, most likely not how, create a page with the code

if(!CModule::IncludeModule("iblock")) return; 
<?
$res = CIBlockElement::GetByID(%сюда ваш ID%);
if($ar_res = $res->GetNext())
 var_dump($ar_res);
?>

don't forget to include a footer or prologue header

I
ildar r. khasanshin, 2017-02-20
@ildarkhasanshin

<your site>/bitrix/admin/sql.php
select ID, IBLOCK_ID, IBLOCK_SECTION_ID from b_iblock_element where ID = <your id>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question