Table of Contents
vproject_report_count()
Declaration
vproject_report_count ( resource inProjectID )
Parameters
Name | Description |
---|---|
inProjectID | Identifier of a Valentina Project. |
Description
Returns count of vReports in the vProject.
Return Values
Returns integer.
Examples
Example
<?php $project_id = vproject_create( $link, $project_name ); ... $count = vproject_report_count( $project_id ); print $count; ?>