Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
Класс PrototypeItemDataManager
+ Граф наследования:PrototypeItemDataManager:

Открытые статические члены

static disableUserFieldsCheck ()
 
static getType ()
 
static getMap ()
 
static checkFields (ORM\Data\Result $result, $primary, array $data)
 
static getItemUserFieldEntityId ()
 
static onBeforeAdd (Event $event)
 
static onAfterAdd (Event $event)
 
static onBeforeUpdate (Event $event)
 
static onAfterUpdate (Event $event)
 
static onBeforeDelete (Event $event)
 
static isOwnField (string $fieldName)
 
static getOwnFieldNames ()
 
static getUserFieldValues (int $id, array $userFields)
 
static updateUserFieldValues (int $id, array $fields)
 
static deleteUserFieldValues (int $id)
 
- Открытые статические члены унаследованные от DataManager
static getEntity ()
 
static unsetEntity ($class)
 
static getTableName ()
 
static getConnectionName ()
 
static getTitle ()
 
static getObjectClass ()
 
static getObjectClassName ()
 
static getCollectionClass ()
 
static getCollectionClassName ()
 
static getObjectParentClass ()
 
static getCollectionParentClass ()
 
static getQueryClass ()
 
static getEntityClass ()
 
static createObject ($setDefaultValues=true)
 
static createCollection ()
 
static wakeUpObject ($row)
 
static wakeUpCollection ($rows)
 
static getUfId ()
 
static isUts ()
 
static isUtm ()
 
static setDefaultScope ($query)
 
static postInitialize (Entity $entity)
 
static getByPrimary ($primary, array $parameters=array())
 
static getById ($id)
 
static getRowById ($id)
 
static getRow (array $parameters)
 
static getList (array $parameters=array())
 
static getCount ($filter=array(), array $cache=array())
 
static query ()
 
static checkFields (Result $result, $primary, array $data)
 
static add (array $data)
 
static addMulti ($rows, $ignoreEvents=false)
 
static update ($primary, array $data)
 
static delete ($primary)
 
static enableCrypto ($field, $table=null, $mode=true)
 
static cryptoEnabled ($field, $table=null)
 
static setCurrentDeletingObject ($object)
 
static cleanCache ()
 
static onAdd (Event $event)
 
static onUpdate (Event $event)
 
static onDelete (Event $event)
 
static onAfterDelete (Event $event)
 

Защищенные статические члены

static getTemporaryStorage ()
 
static getErrorFromException ()
 
static modifyValuesBeforeSave ($id, array $data, array $options=[])
 
static convertValuesBeforeSave (array $data, array $userFields)
 
static convertSingleValueBeforeSave ($value, array $userField)
 
static isNotNull ($value)
 
- Защищенные статические члены унаследованные от DataManager
static getObjectClassByDataClass ($dataClass)
 
static getCollectionClassByDataClass ($dataClass)
 
static replaceFieldName ($data=array())
 
static validatePrimary ($primary)
 
static checkUfFields ($object, $ufdata, $result)
 
static callOnBeforeAddEvent ($object, $fields, $result)
 
static callOnAddEvent ($object, $fields, $ufdata)
 
static callOnAfterAddEvent ($object, $fields, $id)
 
static callOnBeforeUpdateEvent ($object, $fields, $result)
 
static callOnUpdateEvent ($object, $fields, $ufdata)
 
static callOnAfterUpdateEvent ($object, $fields)
 
static callOnBeforeDeleteEvent ($object, $entity, $result)
 
static callOnDeleteEvent ($object, $entity)
 
static callOnAfterDeleteEvent ($object, $entity)
 

Статические защищенные данные

static $temporaryStorage
 
static $isCheckUserFields = true
 
- Статические защищенные данные унаследованные от DataManager
static $entity
 
static $objectClass
 
static $collectionClass
 
static $currentDeletingObjects
 
static $reservedWords
 

Дополнительные унаследованные члены

- Открытые атрибуты унаследованные от DataManager
const EVENT_ON_BEFORE_ADD = "OnBeforeAdd"
 
const EVENT_ON_ADD = "OnAdd"
 
const EVENT_ON_AFTER_ADD = "OnAfterAdd"
 
const EVENT_ON_BEFORE_UPDATE = "OnBeforeUpdate"
 
const EVENT_ON_UPDATE = "OnUpdate"
 
const EVENT_ON_AFTER_UPDATE = "OnAfterUpdate"
 
const EVENT_ON_BEFORE_DELETE = "OnBeforeDelete"
 
const EVENT_ON_DELETE = "OnDelete"
 
const EVENT_ON_AFTER_DELETE = "OnAfterDelete"
 

Подробное описание

См. определение в файле prototypeitemdatamanager.php строка 14

Методы

◆ checkFields()

static checkFields ( ORM\Data\Result $result,
$primary,
array $data )
static

См. определение в файле prototypeitemdatamanager.php строка 53

◆ convertSingleValueBeforeSave()

static convertSingleValueBeforeSave ( $value,
array $userField )
staticprotected

Modify value before save.

Аргументы
mixed$valueValue for converting.
array$userFieldField array.
Возвращает
mixed

См. определение в файле prototypeitemdatamanager.php строка 389

◆ convertValuesBeforeSave()

static convertValuesBeforeSave ( array $data,
array $userFields )
staticprotected

Convert values of user fields using their callback.

Аргументы
array$data
array$userFields
Возвращает
array

См. определение в файле prototypeitemdatamanager.php строка 338

◆ deleteUserFieldValues()

static deleteUserFieldValues ( int $id)
static

См. определение в файле prototypeitemdatamanager.php строка 509

◆ disableUserFieldsCheck()

static disableUserFieldsCheck ( )
static

This method disabled check that required user fields are not empty for the next saving (no matter, add or update). This check will be disabled only once. You should invoke this method before every saving.

См. определение в файле prototypeitemdatamanager.php строка 24

◆ getErrorFromException()

static getErrorFromException ( )
staticprotected

См. определение в файле prototypeitemdatamanager.php строка 75

◆ getItemUserFieldEntityId()

static getItemUserFieldEntityId ( )
static

См. определение в файле prototypeitemdatamanager.php строка 70

◆ getMap()

static getMap ( )
static

Returns entity map definition. To get initialized fields

См. также
\Bitrix\Main\ORM\Entity::getFields() and \Bitrix\Main\ORM\Entity::getField()

Переопределяет метод предка DataManager.

См. определение в файле prototypeitemdatamanager.php строка 34

◆ getOwnFieldNames()

static getOwnFieldNames ( )
static

Returns list of field names that are not user fields.

Возвращает
array

См. определение в файле prototypeitemdatamanager.php строка 471

◆ getTemporaryStorage()

static getTemporaryStorage ( )
staticprotected

См. определение в файле prototypeitemdatamanager.php строка 43

◆ getType()

static getType ( )
static

См. определение в файле prototypeitemdatamanager.php строка 29

◆ getUserFieldValues()

static getUserFieldValues ( int $id,
array $userFields )
static

См. определение в файле prototypeitemdatamanager.php строка 487

◆ isNotNull()

static isNotNull ( $value)
staticprotected

См. определение в файле prototypeitemdatamanager.php строка 456

◆ isOwnField()

static isOwnField ( string $fieldName)
static

См. определение в файле prototypeitemdatamanager.php строка 461

◆ modifyValuesBeforeSave()

static modifyValuesBeforeSave ( $id,
array $data,
array $options = [] )
staticprotected
Аргументы
$id
array$data
array$options
Возвращает
Main\ORM\EventResult

См. определение в файле prototypeitemdatamanager.php строка 99

◆ onAfterAdd()

static onAfterAdd ( Event $event)
static

Переопределяет метод предка DataManager.

См. определение в файле prototypeitemdatamanager.php строка 246

◆ onAfterUpdate()

static onAfterUpdate ( Event $event)
static

Переопределяет метод предка DataManager.

См. определение в файле prototypeitemdatamanager.php строка 258

◆ onBeforeAdd()

static onBeforeAdd ( Event $event)
static

Переопределяет метод предка DataManager.

См. определение в файле prototypeitemdatamanager.php строка 241

◆ onBeforeDelete()

static onBeforeDelete ( Event $event)
static

Переопределяет метод предка DataManager.

См. определение в файле prototypeitemdatamanager.php строка 265

◆ onBeforeUpdate()

static onBeforeUpdate ( Event $event)
static

Переопределяет метод предка DataManager.

См. определение в файле prototypeitemdatamanager.php строка 251

◆ updateUserFieldValues()

static updateUserFieldValues ( int $id,
array $fields )
static

См. определение в файле prototypeitemdatamanager.php строка 504

Данные класса

◆ $isCheckUserFields

$isCheckUserFields = true
staticprotected

См. определение в файле prototypeitemdatamanager.php строка 17

◆ $temporaryStorage

$temporaryStorage
staticprotected

См. определение в файле prototypeitemdatamanager.php строка 16