Post::deactivateLogEntry

  1. Bitrix24 API (v. 23.675.0)
  2. blog
  3. Post
  4. deactivateLogEntry
  • Модуль: blog
  • Путь к файлу: ~/bitrix/modules/blog/lib/item/post.php
  • Класс: BitrixBlogItemPost
  • Вызов: Post::deactivateLogEntry
public function deactivateLogEntry()
{
	$result = false;

	if (!Loader::includeModule('socialnetwork'))
	{
		return $result;
	}

	$logId = $this->getLogId();
	if (intval($logId) <= 0)
	{
		return $result;
	}

	LogTable::update($logId, [
		'INACTIVE' => 'Y'
	]);

	return true;
}

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