CMS  Version 3.9
progress_data.inc
Go to the documentation of this file.
1 <?php
8 class ProgressData extends DataItem
9 {
10  // Fields
11  var $fields = array("status" => String,
12  "message" => String,
13  "percentage" => Number);
14 
15  function ProgressData()
16  {
17  $this->DataItem(func_get_args());
18  }
19 }
20 ?>