Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
design_area_linked_css_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['tag_type'] = Array(
43  'added' => '0.0.1',
44  'type' => 'selection',
45  'parameters' => Array(
46  'options' => Array(
47  'link_tag' => 'Link Tag',
48  'import_tag' => '@import Tag',
49  ),
50  'multiple' => FALSE,
51  'allow_empty' => FALSE,
52  ),
53  'default' => 'link_tag',
54  );
55 
56  $this->vars['media'] = Array(
57  'added' => '0.0.1',
58  'type' => 'selection',
59  'parameters' => Array(
60  'options' => Array(
61  'all' => 'All',
62  'aural' => 'Aural',
63  'braille' => 'Braille',
64  'embossed' => 'Embossed',
65  'handheld' => 'Handheld',
66  'print' => 'Print',
67  'projection' => 'Projection',
68  'screen' => 'Screen',
69  'tty' => 'TTY',
70  'tv' => 'TV',
71  ),
72  'multiple' => FALSE,
73  'allow_empty' => FALSE,
74  ),
75  'default' => 'all',
76  );
77 
78  }//end constructor
79 
80 
81 }//end class
82 ?>