Base::update

  1. Bitrix24 API (v. 23.675.0)
  2. blog
  3. Base
  4. update
  • Модуль: blog
  • Путь к файлу: ~/bitrix/modules/blog/lib/copy/implement/base.php
  • Класс: BitrixBlogCopyImplementBase
  • Вызов: Base::update
public function update($entityId, array $fields);

public function updateAttachedIdsInText(int $id, array $attachedIds, callable $callback): void
{
	list($field, $text) = $this->getText($id);

	$detailText = call_user_func_array($callback, [
		$text,
		$this->ufEntityObject,
		$id,
		$this->ufDiskFileField,
		$attachedIds
	]);

	$this->update($id, [$field => $detailText]);
}

Добавить комментарий