Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
placement.php
1<?php
2namespace Bitrix\Landing;
3
5{
10 public static $internalClass = 'PlacementTable';
11
17 public static function deleteByAppId($id)
18 {
19 $res = self::getList(array(
20 'select' => array(
21 'ID'
22 ),
23 'filter' => array(
24 '=APP_ID' => $id
25 )
26 ));
27 while ($row = $res->fetch())
28 {
29 self::delete($row['ID']);
30 }
31 }
32}
static deleteByAppId($id)
Definition placement.php:17