Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/report/lib/visualconstructor/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/report/lib/visualconstructor/ireportsingledata.php

<?php

namespace Bitrix\Report\VisualConstructor;

/**
 * Interface IReportSingleData
 * @package Bitrix\Report\VisualConstructor
 */
interface IReportSingleData extends IReportData
{
	/**
	 * array with format
	 * array(
	 *     'title' => 'Some Title',
	 *     'value' => 0,
	 *     'targetUrl' => 'http://url.domain?params=param'
	 * )
	 * @return array
	 */
	public function getSingleData();


	/**
	 * @return array
	 */
	public function getSingleDemoData();
}