mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
25 lines
418 B
PHP
25 lines
418 B
PHP
<?php
|
|
|
|
/**
|
|
* KPI logging extensibility point
|
|
*
|
|
* KPI Logger extension
|
|
*/
|
|
interface iKPILoggerExtension
|
|
{
|
|
/**
|
|
* Init the statistics collected
|
|
*
|
|
* @return void
|
|
*/
|
|
public function InitStats();
|
|
|
|
/**
|
|
* Add a new KPI to the stats
|
|
*
|
|
* @param \Combodo\iTop\Core\Kpi\KpiLogData $oKpiLogData
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function LogOperation($oKpiLogData);
|
|
} |