Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
design_area_nest_content_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  'type_codes' => Array(
44  'added' => '0.0.1',
45  'type' => 'serialise',
46  'default' => Array(),
47  'description' => 'A list of type codes to restrict the asset selection to, these types are not strict however so any sub-types of these will also be valid. While this is a "serialise" attribute it can be set using a comma or space separated list of type codes',
48  ),
49  'paint_with' => Array(
50  'added' => '0.2',
51  'type' => 'text',
52  'default' => 'raw',
53  'description' => 'Allow this nested content to be painted by a specified paint layout',
54  ),
55  'paint_layout' => Array(
56  'added' => '0.2',
57  'type' => 'int',
58  'default' => '0',
59  'description' => 'Allow this nested content to be painted by a this paint layout',
60  ),
61  );
62 
63  }//end constructor
64 
65 
66 }//end class
67 ?>