Your IP : 18.119.141.115


Current Path : /home/bitrix/ext_www/klimatlend.ua/local/lib/Epages/
Upload File :
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);
			}
		}
	} 
}