Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
bodycopy_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' => 'BodyCopy',
47  'update_fn' => '',
48  'description' => 'the name of the bodycopy asset',
49  'is_admin' => FALSE,
50  'is_contextable'=> TRUE,
51  ),
52  );
53 
54  }//end constructor
55 
56 
63  public function _getFileList()
64  {
65  return Array(
66  'images/icons/add.png',
67  'images/icons/delete.png',
68  'images/icons/reorder.png',
69  'images/icons/create_container.png',
70  'images/icons/table_properties.png',
71  'images/icons/row_properties.png',
72  'images/icons/cell_properties.png',
73  'images/icons/edit_mode.png',
74  'images/icons/source_mode.png',
75  'images/icons/accessibility_pass.png',
76  'images/icons/accessibility_fail.png',
77  'images/icons/htmltidy_disabled.png',
78  'images/icons/htmltidy_pass.png',
79  'images/icons/htmltidy_fail.png',
80  'images/icons/htmltidy_wait.png',
81  'images/up_arrow.gif',
82  'images/down_arrow.gif',
83  'js/bodycopy_edit_tables.js',
84  'js/bodycopy_edit_divs.js',
85  'js/bodycopy_edit_fns.js',
86  );
87 
88  }//end _getFileList()
89 
90 
91 }//end class
92 
93 ?>