Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
comment_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 
30 {
31 
32 
37  function Comment_Management(&$pm)
38  {
39  $this->Asset_Management($pm);
40 
41  $this->vars['comment'] = Array(
42  'added' => '0.1',
43  'type' => 'text',
44  'default' => '',
45  'is_admin' => FALSE,
46  );
47 
48  $this->vars['rating'] = Array(
49  'added' => '0.3',
50  'type' => 'float',
51  'default' => -1,
52  'is_admin' => FALSE,
53  );
54 
55  }//end constructor
56 
57 
64  function _getFileList()
65  {
66  return Array(
67  'files/star.png',
68  'files/star_grey.png',
69  );
70 
71  }//end _getFileList()
72 
73 
74 }//end class
75 
76 ?>