D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
pinaclec
/
public_html
/
wp-content
/
plugins
/
ninja-forms
/
includes
/
Telemetry
/
Filename :
CountMetric.php
back
Copy
<?php class NF_Telemetry_CountMetric extends NF_Telemetry_Metric { public function increment( $increment = 1 ) { $count = $this->get(); $new_count = $count + $increment; return $this->save( $new_count ); } }