Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/main/lib/mail/internal/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/main/lib/mail/internal/sendersendcounter.php

<?php
/**
 * Bitrix Framework
 * @package bitrix
 * @subpackage bitrix24
 * @copyright 2001-2017 Bitrix
 */
namespace Bitrix\Main\Mail\Internal;

use Bitrix\Main\Entity;

/**
 * Class SenderSendCounterTable
 *
 * DO NOT WRITE ANYTHING BELOW THIS
 *
 * <<< ORMENTITYANNOTATION
 * @method static EO_SenderSendCounter_Query query()
 * @method static EO_SenderSendCounter_Result getByPrimary($primary, array $parameters = [])
 * @method static EO_SenderSendCounter_Result getById($id)
 * @method static EO_SenderSendCounter_Result getList(array $parameters = [])
 * @method static EO_SenderSendCounter_Entity getEntity()
 * @method static \Bitrix\Main\Mail\Internal\EO_SenderSendCounter createObject($setDefaultValues = true)
 * @method static \Bitrix\Main\Mail\Internal\EO_SenderSendCounter_Collection createCollection()
 * @method static \Bitrix\Main\Mail\Internal\EO_SenderSendCounter wakeUpObject($row)
 * @method static \Bitrix\Main\Mail\Internal\EO_SenderSendCounter_Collection wakeUpCollection($rows)
 */
class SenderSendCounterTable extends Entity\DataManager
{
	public static function getTableName()
	{
		return 'b_main_mail_sender_send_counter';
	}

	public static function getMap()
	{
		return array(
			'DATE_STAT' => array(
				'data_type' => 'date',
				'primary' => true,
			),
			'EMAIL' => array(
				'data_type' => 'string',
				'primary' => true,
			),
			'CNT' => array(
				'data_type' => 'integer'
			),
		);
	}

	public static function mergeData(array $insert, array $update)
	{
		$entity = static::getEntity();
		$connection = $entity->getConnection();
		$helper = $connection->getSqlHelper();

		$sql = $helper->prepareMerge($entity->getDBTableName(), $entity->getPrimaryArray(), $insert, $update);

		$sql = current($sql);
		if($sql <> '')
		{
			$connection->queryExecute($sql);
			$entity->cleanCache();
		}
	}
}