Current Path : /home/bitrix/ext_www/klimatlend.ua/local/lib/Epages/ |
Current File : /home/bitrix/ext_www/klimatlend.ua/local/lib/Epages/CustomIproperty.php |
<?php namespace Epages; class CustomIproperty { public $IBLOCK_ID; public function __construct($IBLOCK_ID) { $this->IBLOCK_ID = (int)$IBLOCK_ID; } public function deleteSectionsSeoParams() { $req = CustomIpropertyTable::getList([ 'filter' => [ 'IBLOCK_ID' => $this->IBLOCK_ID, 'ENTITY_TYPE' => 'S' ] ])->fetchAll(); if(count($req) > 0) { foreach($req as $item) { $id = CustomIpropertyTable::delete($item['ID']); var_dump($id); } } } }