Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
donation_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 
30 {
31 
32 
38  {
39  Asset_Management::__construct($pm);
40 
41  $this->vars = Array(
42  'name' => Array(
43  'added' => '0.1',
44  'type' => 'text',
45  'default' => '',
46  'description' => 'The name of the Donation that this asset represents',
47  'is_contextable' => TRUE,
48  ),
49  'description' => Array(
50  'added' => '0.1',
51  'type' => 'text',
52  'default' => '',
53  'description' => 'The long description of the donation',
54  'is_contextable' => TRUE,
55  ),
56  'short_description' => Array(
57  'added' => '0.1',
58  'type' => 'text',
59  'default' => '',
60  'description' => 'The short description of the donation for small display space',
61  'is_contextable' => TRUE,
62  ),
63  'details' => Array(
64  'added' => '0.1',
65  'type' => 'text',
66  'default' => '',
67  'description' => 'The detailed specifications of the donation',
68  'is_contextable' => TRUE,
69  ),
70  );
71 
72  }//end constructor
73 
74 
75 }//end class
76 
77 ?>