Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
bodycopy_container_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
39  {
40  Asset_Management::__construct($pm);
41 
42  $this->vars = Array(
43  'name' => Array(
44  'added' => '0.0.1',
45  'type' => 'text',
46  'default' => '',
47  'is_admin' => FALSE,
48  'is_contextable'=> TRUE,
49  ),
50  'description' => Array(
51  'added' => '0.6',
52  'type' => 'text',
53  'default' => '',
54  'description' => 'Description for this bodycopy container',
55  'is_admin' => FALSE,
56  'is_contextable' => TRUE,
57  ),
58  'attributes' => Array(
59  'added' => '0.0.1',
60  'type' => 'serialise',
61  'default' => Array(),
62  ),
63  'shadow_links' => Array(
64  'added' => '0.3',
65  'type' => 'serialise',
66  'default' => Array(),
67  'description' => 'Array holding the assetids belonging to shadow assets that are used within the content. Needed because they cannot be notice linked like normal assets can.',
68  'is_contextable' => FALSE,
69  ),
70  );
71 
72  }//end constructor
73 
74 
75 }//end class
76 
77 ?>