Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
logfavorites.php
1<?php
9
11
28class LogFavoritesTable extends Entity\DataManager
29{
30 public static function getTableName()
31 {
32 return 'b_sonet_log_favorites';
33 }
34
35 public static function getMap()
36 {
37 $fieldsMap = array(
38 'USER_ID' => array(
39 'data_type' => 'integer',
40 'primary' => true,
41 ),
42 'LOG_ID' => array(
43 'data_type' => 'integer',
44 'primary' => true,
45 ),
46 );
47
48 return $fieldsMap;
49 }
50}