PageRenderTime 49ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 1ms

/common/libraries/php/autoloader.class.php

https://bitbucket.org/gugli/chamilo-dev
PHP | 482 lines | 476 code | 6 blank | 0 comment | 1 complexity | 757e2da44e47a3672e571b75934f9bf5 MD5 | raw file
Possible License(s): BSD-3-Clause, LGPL-2.1, LGPL-3.0, GPL-3.0, MIT, GPL-2.0
  1. <?php
  2. namespace common\libraries;
  3. class Autoloader
  4. {
  5. private static $map = array(
  6. 'Application' => '/application.class.php',
  7. 'ApplicationComponent' => '/application_component.class.php',
  8. 'Autoloader' => '/util/various/autoloader_utilities.class.php',
  9. 'BasicApplication' => '/basic_application.class.php',
  10. 'Block' => '/block.class.php',
  11. 'BlockConnectorBase' => '/block_connector_base.class.php',
  12. 'CoreApplication' => '/core_application.class.php',
  13. 'CoreApplicationComponent' => '/core_application_component.class.php',
  14. 'Installer' => '/installer.class.php',
  15. 'LauncherApplication' => '/launcher_application.class.php',
  16. 'Redirect' => '/redirect.class.php',
  17. 'ResourceManager' => '/resource_manager.class.php',
  18. 'SubManager' => '/sub_manager.class.php',
  19. 'SubManagerComponent' => '/sub_manager_component.class.php',
  20. 'Updater' => '/updater.class.php',
  21. 'Utilities' => '/utilities.class.php',
  22. 'WebApplication' => '/web_application.class.php',
  23. 'WebApplicationComponent' => '/web_application_component.class.php',
  24. 'AjaxManager' => '/ajax/ajax_manager.class.php',
  25. 'CommonAjaxGroupsFeed' => '/ajax/groups_feed.class.php',
  26. 'JsonAjaxResult' => '/ajax/json_ajax_result.class.php',
  27. 'Authentication' => '/authentication/authentication.class.php',
  28. 'ExternalAuthentication' => '/authentication/external_authentication.class.php',
  29. 'CasAuthentication' => '/authentication/cas/cas_authentication.class.php',
  30. 'CasPassword' => '/authentication/cas/cas_password/cas_password.class.php',
  31. 'DefaultCasPassword' => '/authentication/cas/cas_password/type/default_cas_password.class.php',
  32. 'LdapCasPassword' => '/authentication/cas/cas_password/type/ldap_cas_password.class.php',
  33. 'MysqlCasPassword' => '/authentication/cas/cas_password/type/mysql_cas_password.class.php',
  34. 'WebserviceCasPassword' => '/authentication/cas/cas_password/type/webservice_cas_password.class.php',
  35. 'InvitationAuthentication' => '/authentication/invitation/invitation_authentication.class.php',
  36. 'LdapAuthentication' => '/authentication/ldap/ldap_authentication.class.php',
  37. 'LdapParser' => '/authentication/ldap/ldap_parser.class.php',
  38. 'PlatformAuthentication' => '/authentication/platform/platform_authentication.class.php',
  39. 'SecurityTokenAuthentication' => '/authentication/security_token/security_token_authentication.class.php',
  40. 'ShibbolethAuthentication' => '/authentication/shibboleth/shibboleth_authentication.class.php',
  41. 'CalendarTable' => '/calendar/calendar_table.class.php',
  42. 'DayCalendar' => '/calendar/day_calendar.class.php',
  43. 'MiniDayCalendar' => '/calendar/mini_day_calendar.class.php',
  44. 'MiniMonthCalendar' => '/calendar/mini_month_calendar.class.php',
  45. 'MiniWeekCalendar' => '/calendar/mini_week_calendar.class.php',
  46. 'MonthCalendar' => '/calendar/month_calendar.class.php',
  47. 'WeekCalendar' => '/calendar/week_calendar.class.php',
  48. 'YearCalendar' => '/calendar/year_calendar.class.php',
  49. 'AggregateCondition' => '/condition/aggregate_condition.class.php',
  50. 'AndCondition' => '/condition/and_condition.class.php',
  51. 'Condition' => '/condition/condition.class.php',
  52. 'EqualityCondition' => '/condition/equality_condition.class.php',
  53. 'InCondition' => '/condition/in_condition.class.php',
  54. 'InequalityCondition' => '/condition/inequality_condition.class.php',
  55. 'MultipleAggregateCondition' => '/condition/multiple_aggregate_condition.class.php',
  56. 'NotCondition' => '/condition/not_condition.class.php',
  57. 'OrCondition' => '/condition/or_condition.class.php',
  58. 'PatternMatchCondition' => '/condition/pattern_match_condition.class.php',
  59. 'SubselectCondition' => '/condition/subselect_condition.class.php',
  60. 'Configuration' => '/configuration/configuration.class.php',
  61. 'LocalSetting' => '/configuration/local_setting.class.php',
  62. 'PlatformSetting' => '/configuration/platform_setting.class.php',
  63. 'CssUtilities' => '/css/css_utilities.class.php',
  64. 'DatetimeUtilities' => '/datetime/datetime_utilities.class.php',
  65. 'Timer' => '/datetime/timer.class.php',
  66. 'DebugUtilities' => '/debug/debug_utilities.class.php',
  67. 'Diagnoser' => '/diagnoser/diagnoser.class.php',
  68. 'DiagnoserCellRenderer' => '/diagnoser/diagnoser_cellrenderer.class.php',
  69. 'Export' => '/export/export.class.php',
  70. 'CsvExport' => '/export/csv/csv_export.class.php',
  71. 'ExcelExport' => '/export/excel/excel_export.class.php',
  72. 'ExcelLayout' => '/export/layout/excel_layout.class.php',
  73. 'OdsExport' => '/export/ods/ods_export.class.php',
  74. 'PdfExport' => '/export/pdf/pdf_export.class.php',
  75. 'XmlExport' => '/export/xml/xml_export.class.php',
  76. 'FedoraProxy' => '/fedora/fedora_proxy.class.php',
  77. 'fedora_fs_access_right' => '/fedora/fs/fedora_fs_access_right.class.php',
  78. 'fedora_fs_base' => '/fedora/fs/fedora_fs_base.class.php',
  79. 'fedora_fs_datastream' => '/fedora/fs/fedora_fs_datastream.class.php',
  80. 'fedora_fs_folder' => '/fedora/fs/fedora_fs_folder.class.php',
  81. 'fedora_fs_history' => '/fedora/fs/fedora_fs_history.class.php',
  82. 'fedora_fs_itql_query' => '/fedora/fs/fedora_fs_itql_query.class.php',
  83. 'fedora_fs_lastobjects' => '/fedora/fs/fedora_fs_lastobjects.class.php',
  84. 'fedora_fs_mystuff' => '/fedora/fs/fedora_fs_mystuff.class.php',
  85. 'fedora_fs_object' => '/fedora/fs/fedora_fs_object.class.php',
  86. 'fedora_fs_search' => '/fedora/fs/fedora_fs_search.class.php',
  87. 'fedora_fs_search_by_id' => '/fedora/fs/fedora_fs_search_by_id.class.php',
  88. 'fedora_fs_sparql_query' => '/fedora/fs/fedora_fs_sparql_query.class.php',
  89. 'fedora_fs_store' => '/fedora/fs/fedora_fs_store.class.php',
  90. 'fedora_fs_subject' => '/fedora/fs/fedora_fs_subject.class.php',
  91. 'FoxmlReader' => '/fedora/reader/foxml_reader.class.php',
  92. 'FedoraXmlReader' => '/fedora/reader/xml_reader.class.php',
  93. 'FedoraXmlReaderTopDownIterator' => '/fedora/reader/xml_reader.class.php',
  94. 'FedoraXmlReaderEmpty' => '/fedora/reader/xml_reader_empty.class.php',
  95. 'IteratorEmpty' => '/fedora/reader/xml_reader_empty.class.php',
  96. 'RestClient' => '/webservice/rest/client/rest_client.class.php',
  97. 'RestConfig' => '/fedora/rest/rest_config.class.php',
  98. 'RestProxyBase' => '/fedora/rest/rest_proxy_base.class.php',
  99. 'RestResult' => '/webservice/rest/client/rest_result.class.php',
  100. 'FoxmlWriter' => '/fedora/writer/foxml_writer.class.php',
  101. 'IdFactory' => '/fedora/writer/id_factory.class.php',
  102. 'XmlWriterBase' => '/fedora/writer/xml_writer_base.class.php',
  103. 'Filecompression' => '/filecompression/filecompression.class.php',
  104. 'PclzipFilecompression' => '/filecompression/pclzip/pclzip_filecompression.class.php',
  105. 'FileLogger' => '/filesystem/file_logger.class.php',
  106. 'FileProperties' => '/filesystem/file_properties.class.php',
  107. 'Filesystem' => '/filesystem/filesystem.class.php',
  108. 'Path' => '/filesystem/path.class.php',
  109. 'Hashing' => '/hashing/hashing.class.php',
  110. 'Haval256Hashing' => '/hashing/haval256/haval256_hashing.class.php',
  111. 'Md5Hashing' => '/hashing/md5/md5_hashing.class.php',
  112. 'Sha1Hashing' => '/hashing/sha1/sha1_hashing.class.php',
  113. 'Sha512Hashing' => '/hashing/sha512/sha512_hashing.class.php',
  114. 'WhirlpoolHashing' => '/hashing/whirlpool/whirlpool_hashing.class.php',
  115. 'Banner' => '/html/banner.class.php',
  116. 'BbcodeParser' => '/html/bbcode_parser.class.php',
  117. 'Breadcrumb' => '/html/breadcrumb.class.php',
  118. 'BreadcrumbTrail' => '/html/breadcrumb_trail.class.php',
  119. 'Display' => '/html/display.class.php',
  120. 'Footer' => '/html/footer.class.php',
  121. 'Header' => '/html/header.class.php',
  122. 'Html5Format' => '/html/html5_format.class.php',
  123. 'Html5MediaValidator' => '/html/html5_media_validator.class.php',
  124. 'MessageLogger' => '/html/message_logger.class.php',
  125. 'NotificationMessage' => '/html/notification_message.class.php',
  126. 'Text' => '/html/text.class.php',
  127. 'ActionBarRenderer' => '/html/action_bar/action_bar_renderer.class.php',
  128. 'ActionBarSearchForm' => '/html/action_bar/action_bar_search_form.class.php',
  129. 'ConditionProperty' => '/html/action_bar/condition_property.class.php',
  130. 'FormValidator' => '/html/formvalidator/form_validator.class.php',
  131. 'FormValidatorHtmlEditor' => '/html/formvalidator/form_validator_html_editor.class.php',
  132. 'FormValidatorHtmlEditorOptions' => '/html/formvalidator/form_validator_html_editor_options.class.php',
  133. 'FormValidatorHtmlEditorTemplates' => '/html/formvalidator/form_validator_html_editor_templates.class.php',
  134. 'FormValidatorPage' => '/html/formvalidator/form_validator_page.class.php',
  135. 'FormValidatorTab' => '/html/formvalidator/form_validator_tab.class.php',
  136. 'WizardPageValidator' => '/html/formvalidator/wizard_page_validator.class.php',
  137. 'SettingsXmlFormParser' => '/html/formvalidator/dynamic_form_building/settings_xml_form_parser.class.php',
  138. 'XmlFormParser' => '/html/formvalidator/dynamic_form_building/xml_form_parser.class.php',
  139. 'XmlFormParserResult' => '/html/formvalidator/dynamic_form_building/xml_form_parser_result.class.php',
  140. 'XmlFormParserValidationRule' => '/html/formvalidator/dynamic_form_building/xml_form_parser_validation_rule.class.php',
  141. 'AdvancedElementFinderElement' => '/html/formvalidator/Element/advanced_element_finder/advanced_element_finder_element.class.php',
  142. 'AdvancedElementFinderElementType' => '/html/formvalidator/Element/advanced_element_finder/advanced_element_finder_element_type.class.php',
  143. 'AdvancedElementFinderElementTypes' => '/html/formvalidator/Element/advanced_element_finder/advanced_element_finder_element_types.class.php',
  144. 'AdvancedElementFinderElements' => '/html/formvalidator/Element/advanced_element_finder/advanced_element_finder_elements.class.php',
  145. 'FormValidatorCkeditorHtmlEditor' => '/html/formvalidator/html_editor/ckeditor_html_editor.class.php',
  146. 'FormValidatorTinymceHtmlEditor' => '/html/formvalidator/html_editor/tinymce_html_editor.class.php',
  147. 'HtmlEditorProcessor' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_processor/html_editor_processor.class.php',
  148. 'HtmlEditorCkeditorAudioProcessor' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_processor/ckeditor/html_editor_ckeditor_audio_processor.class.php',
  149. 'HtmlEditorCkeditorChamiloProcessor' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_processor/ckeditor/html_editor_ckeditor_chamilo_processor.class.php',
  150. 'HtmlEditorCkeditorDailymotionProcessor' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_processor/ckeditor/html_editor_ckeditor_dailymotion_processor.class.php',
  151. 'HtmlEditorCkeditorFlashProcessor' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_processor/ckeditor/html_editor_ckeditor_flash_processor.class.php',
  152. 'HtmlEditorCkeditorFlashVideoProcessor' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_processor/ckeditor/html_editor_ckeditor_flash_video_processor.class.php',
  153. 'HtmlEditorCkeditorHandbookItemProcessor' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_processor/ckeditor/html_editor_ckeditor_handbook_item_processor.class.php',
  154. 'HtmlEditorCkeditorImageProcessor' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_processor/ckeditor/html_editor_ckeditor_image_processor.class.php',
  155. 'HtmlEditorCkeditorVideoProcessor' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_processor/ckeditor/html_editor_ckeditor_video_processor.class.php',
  156. 'HtmlEditorCkeditorVimeoProcessor' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_processor/ckeditor/html_editor_ckeditor_vimeo_processor.class.php',
  157. 'HtmlEditorCkeditorYoutubeProcessor' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_processor/ckeditor/html_editor_ckeditor_youtube_processor.class.php',
  158. 'HtmlEditorRepoViewer' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/html_editor_repo_viewer.class.php',
  159. 'HtmlEditorAudioRepoViewer' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/audio/html_editor_audio_repo_viewer.class.php',
  160. 'HtmlEditorAudioRepoViewerBrowserComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/audio/component/browser.class.php',
  161. 'HtmlEditorAudioRepoViewerCreatorComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/audio/component/creator.class.php',
  162. 'HtmlEditorAudioRepoViewerViewerComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/audio/component/viewer.class.php',
  163. 'AudioContentObjectTable' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/audio/component/audio_content_object_table/audio_content_object_table.class.php',
  164. 'AudioContentObjectTableCellRenderer' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/audio/component/audio_content_object_table/audio_content_object_table_cell_renderer.class.php',
  165. 'AudioContentObjectTableColumnModel' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/audio/component/audio_content_object_table/audio_content_object_table_column_model.class.php',
  166. 'AudioContentObjectTableDataProvider' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/audio/component/audio_content_object_table/audio_content_object_table_data_provider.class.php',
  167. 'HtmlEditorChamiloRepoViewer' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/chamilo/html_editor_chamilo_repo_viewer.class.php',
  168. 'HtmlEditorChamiloRepoViewerBrowserComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/chamilo/component/browser.class.php',
  169. 'HtmlEditorChamiloRepoViewerCreatorComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/chamilo/component/creator.class.php',
  170. 'HtmlEditorChamiloRepoViewerViewerComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/chamilo/component/viewer.class.php',
  171. 'ImageContentObjectTable' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/chamilo/component/image_content_object_table/image_content_object_table.class.php',
  172. 'ImageContentObjectTableCellRenderer' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/chamilo/component/image_content_object_table/image_content_object_table_cell_renderer.class.php',
  173. 'ImageContentObjectTableColumnModel' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/chamilo/component/image_content_object_table/image_content_object_table_column_model.class.php',
  174. 'ImageContentObjectTableDataProvider' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/chamilo/component/image_content_object_table/image_content_object_table_data_provider.class.php',
  175. 'HtmlEditorDailymotionRepoViewer' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/dailymotion/html_editor_dailymotion_repo_viewer.class.php',
  176. 'HtmlEditorFlashRepoViewer' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/flash/html_editor_flash_repo_viewer.class.php',
  177. 'HtmlEditorFlashRepoViewerBrowserComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/flash/component/browser.class.php',
  178. 'HtmlEditorFlashRepoViewerCreatorComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/flash/component/creator.class.php',
  179. 'HtmlEditorFlashRepoViewerViewerComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/flash/component/viewer.class.php',
  180. 'FlashContentObjectTable' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/flash/component/flash_content_object_table/flash_content_object_table.class.php',
  181. 'FlashContentObjectTableCellRenderer' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/flash/component/flash_content_object_table/flash_content_object_table_cell_renderer.class.php',
  182. 'FlashContentObjectTableColumnModel' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/flash/component/flash_content_object_table/flash_content_object_table_column_model.class.php',
  183. 'FlashContentObjectTableDataProvider' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/flash/component/flash_content_object_table/flash_content_object_table_data_provider.class.php',
  184. 'HtmlEditorFlashVideoRepoViewer' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/flash_video/html_editor_flash_video_repo_viewer.class.php',
  185. 'HtmlEditorFlashVideoRepoViewerBrowserComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/flash_video/component/browser.class.php',
  186. 'HtmlEditorFlashVideoRepoViewerCreatorComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/flash_video/component/creator.class.php',
  187. 'HtmlEditorFlashVideoRepoViewerViewerComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/flash_video/component/viewer.class.php',
  188. 'FlashVideoContentObjectTable' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/flash_video/component/flash_video_content_object_table/flash_video_content_object_table.class.php',
  189. 'FlashVideoContentObjectTableCellRenderer' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/flash_video/component/flash_video_content_object_table/flash_video_content_object_table_cell_renderer.class.php',
  190. 'FlashVideoContentObjectTableColumnModel' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/flash_video/component/flash_video_content_object_table/flash_video_content_object_table_column_model.class.php',
  191. 'FlashVideoContentObjectTableDataProvider' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/flash_video/component/flash_video_content_object_table/flash_video_content_object_table_data_provider.class.php',
  192. 'HtmlEditorHandbookItemRepoViewer' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/handbook_item/html_editor_handbook_item_repo_viewer.class.php',
  193. 'HtmlEditorHandbookItemRepoViewerBrowserComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/handbook_item/component/browser.class.php',
  194. 'HtmlEditorHandbookItemRepoViewerCreatorComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/handbook_item/component/creator.class.php',
  195. 'HtmlEditorHandbookItemRepoViewerViewerComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/handbook_item/component/viewer.class.php',
  196. 'HandbookItemContentObjectTable' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/handbook_item/component/handbook_item_content_object_table/handbook_item_content_object_table.class.php',
  197. 'HandbookItemContentObjectTableCellRenderer' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/handbook_item/component/handbook_item_content_object_table/handbook_item_content_object_table_cell_renderer.class.php',
  198. 'HandbookItemContentObjectTableColumnModel' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/handbook_item/component/handbook_item_content_object_table/handbook_item_content_object_table_column_model.class.php',
  199. 'HandbookItemContentObjectTableDataProvider' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/handbook_item/component/handbook_item_content_object_table/handbook_item_content_object_table_data_provider.class.php',
  200. 'HtmlEditorVideoRepoViewer' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/video/html_editor_video_repo_viewer.class.php',
  201. 'HtmlEditorVideoRepoViewerComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/video/html_editor_video_repo_viewer_component.class.php',
  202. 'HtmlEditorVideoRepoViewerBrowserComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/video/component/browser.class.php',
  203. 'HtmlEditorVideoRepoViewerCreatorComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/video/component/creator.class.php',
  204. 'HtmlEditorVideoRepoViewerViewerComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/video/component/viewer.class.php',
  205. 'VideoContentObjectTable' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/video/component/video_content_object_table/video_content_object_table.class.php',
  206. 'VideoContentObjectTableCellRenderer' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/video/component/video_content_object_table/video_content_object_table_cell_renderer.class.php',
  207. 'VideoContentObjectTableColumnModel' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/video/component/video_content_object_table/video_content_object_table_column_model.class.php',
  208. 'VideoContentObjectTableDataProvider' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/video/component/video_content_object_table/video_content_object_table_data_provider.class.php',
  209. 'HtmlEditorVimeoRepoViewer' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/vimeo/html_editor_vimeo_repo_viewer.class.php',
  210. 'HtmlEditorYoutubeRepoViewer' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/youtube/html_editor_youtube_repo_viewer.class.php',
  211. 'HtmlEditorYoutubeRepoViewerBrowserComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/youtube/component/browser.class.php',
  212. 'HtmlEditorYoutubeRepoViewerCreatorComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/youtube/component/creator.class.php',
  213. 'HtmlEditorYoutubeRepoViewerViewerComponent' => '/html/formvalidator/html_editor/html_editor_file_browser/html_editor_repo_viewer/youtube/component/viewer.class.php',
  214. 'FormValidatorCkeditorHtmlEditorOptions' => '/html/formvalidator/html_editor_options/ckeditor_html_editor_options.class.php',
  215. 'FormValidatorTinymceHtmlEditorOptions' => '/html/formvalidator/html_editor_options/tinymce_html_editor_options.class.php',
  216. 'FormValidatorCkeditorHtmlEditorTemplates' => '/html/formvalidator/html_editor_templates/ckeditor_html_editor_templates.class.php',
  217. 'FormValidatorTinymceHtmlEditorTemplates' => '/html/formvalidator/html_editor_templates/tinymce_html_editor_templates.class.php',
  218. 'ChamiloTemplate' => '/html/layout/chamilo_template.class.php',
  219. 'ChamiloTemplateCompiler' => '/html/layout/chamilo_template_compiler.class.php',
  220. 'Phpbb2TemplateWrapper' => '/html/layout/phpbb2_template_wrapper.class.php',
  221. 'TemplateCache' => '/html/layout/template_cache.class.php',
  222. 'Theme' => '/html/layout/theme.class.php',
  223. 'ThemeManager' => '/html/layout/theme_manager.class.php',
  224. 'DatabaseTemplateCache' => '/html/layout/template_cache/database_template_cache.class.php',
  225. 'FileTemplateCache' => '/html/layout/template_cache/file_template_cache.class.php',
  226. 'CollapsedTreeMenuRenderer' => '/html/menu/collapsed_tree_menu_renderer.class.php',
  227. 'DragAndDropTreeMenuRenderer' => '/html/menu/drag_and_drop_tree_menu_renderer.class.php',
  228. 'OptionsMenuRenderer' => '/html/menu/options_menu_renderer.class.php',
  229. 'TreeMenuRenderer' => '/html/menu/tree_menu_renderer.class.php',
  230. 'XmlTreeMenuRenderer' => '/html/menu/xml_tree_menu_renderer.class.php',
  231. 'DynamicContentMenu' => '/html/menu/dynamic_content_menu/dynamic_content_menu.class.php',
  232. 'DynamicContentMenuItem' => '/html/menu/dynamic_content_menu/dynamic_content_menu_item.class.php',
  233. 'FormDynamicContentMenu' => '/html/menu/dynamic_content_menu/form_dynamic_content_menu.class.php',
  234. 'FormDynamicContentMenuItem' => '/html/menu/dynamic_content_menu/form_dynamic_content_menu_item.class.php',
  235. 'GenericTree' => '/html/menu/tree_menu/generic_tree.class.php',
  236. 'TreeMenu' => '/html/menu/tree_menu/tree_menu.class.php',
  237. 'TreeMenuDataProvider' => '/html/menu/tree_menu/tree_menu_data_provider.class.php',
  238. 'TreeMenuItem' => '/html/menu/tree_menu/tree_menu_item.class.php',
  239. 'GalleryTable' => '/html/table/gallery_table.class.php',
  240. 'GalleryTableFromArray' => '/html/table/gallery_table.class.php',
  241. 'PropertiesTable' => '/html/table/properties_table.class.php',
  242. 'SimpleTable' => '/html/table/simple_table.class.php',
  243. 'SortableTable' => '/html/table/sortable_table.class.php',
  244. 'SortableTableFromArray' => '/html/table/sortable_table.class.php',
  245. 'StaticTableColumn' => '/html/table/static_table_column.class.php',
  246. 'TableColumn' => '/html/table/table_column.class.php',
  247. 'TableSort' => '/html/table/table_sort.class.php',
  248. 'GalleryObjectTable' => '/html/table/gallery_object_table/gallery_object_table.class.php',
  249. 'GalleryObjectTableCellRenderer' => '/html/table/gallery_object_table/gallery_object_table_cell_renderer.class.php',
  250. 'GalleryObjectTableDataProvider' => '/html/table/gallery_object_table/gallery_object_table_data_provider.class.php',
  251. 'GalleryObjectTableProperty' => '/html/table/gallery_object_table/gallery_object_table_property.class.php',
  252. 'GalleryObjectTablePropertyModel' => '/html/table/gallery_object_table/gallery_object_table_property_model.class.php',
  253. 'NewObjectTable' => '/html/table/new_object_table/new_object_table.class.php',
  254. 'NewObjectTableAjaxSupport' => '/html/table/new_object_table/new_object_table_ajax_support.class.php',
  255. 'NewObjectTableCellRenderer' => '/html/table/new_object_table/new_object_table_cell_renderer.class.php',
  256. 'NewObjectTableColumnModel' => '/html/table/new_object_table/new_object_table_column_model.class.php',
  257. 'NewObjectTableDataProvider' => '/html/table/new_object_table/new_object_table_data_provider.class.php',
  258. 'NewObjectTableFormActionsSupport' => '/html/table/new_object_table/new_object_table_form_actions_support.class.php',
  259. 'NewObjectTablePageSelectionProhibition' => '/html/table/new_object_table/new_object_table_page_selection_prohibition.class.php',
  260. 'NewObjectTableSupport' => '/html/table/new_object_table/new_object_table_support.class.php',
  261. 'NewObjectTableActionsColumn' => '/html/table/new_object_table/actions_column/new_object_table_actions_column.class.php',
  262. 'NewObjectTableCellRendererActionsColumnSupport' => '/html/table/new_object_table/actions_column/new_object_table_cell_renderer_actions_column_support.class.php',
  263. 'NewObjectTableColumnModelActionsColumnSupport' => '/html/table/new_object_table/actions_column/new_object_table_column_model_actions_column_support.class.php',
  264. 'ObjectTable' => '/html/table/object_table/object_table.class.php',
  265. 'ObjectTableCellRenderer' => '/html/table/object_table/object_table_cell_renderer.class.php',
  266. 'ObjectTableColumn' => '/html/table/object_table/object_table_column.class.php',
  267. 'ObjectTableColumnModel' => '/html/table/object_table/object_table_column_model.class.php',
  268. 'ObjectTableDataProvider' => '/html/table/object_table/object_table_data_provider.class.php',
  269. 'ObjectTableFormAction' => '/html/table/object_table/object_table_form_action.class.php',
  270. 'ObjectTableFormActions' => '/html/table/object_table/object_table_form_actions.class.php',
  271. 'ObjectTableOrder' => '/html/table/object_table/object_table_order.class.php',
  272. 'DynamicAction' => '/html/tabs/dynamic_action.class.php',
  273. 'DynamicActionsTab' => '/html/tabs/dynamic_actions_tab.class.php',
  274. 'DynamicContentTab' => '/html/tabs/dynamic_content_tab.class.php',
  275. 'DynamicFormTab' => '/html/tabs/dynamic_form_tab.class.php',
  276. 'DynamicFormTabsRenderer' => '/html/tabs/dynamic_form_tabs_renderer.class.php',
  277. 'DynamicTab' => '/html/tabs/dynamic_tab.class.php',
  278. 'DynamicTabsRenderer' => '/html/tabs/dynamic_tabs_renderer.class.php',
  279. 'DynamicVisualTab' => '/html/tabs/dynamic_visual_tab.class.php',
  280. 'DynamicVisualTabsRenderer' => '/html/tabs/dynamic_visual_tabs_renderer.class.php',
  281. 'Toolbar' => '/html/toolbar/toolbar.class.php',
  282. 'ToolbarItem' => '/html/toolbar/toolbar_item.class.php',
  283. 'HttpHeader' => '/http/http_header.class.php',
  284. 'ImageManipulation' => '/image_manipulation/image_manipulation.class.php',
  285. 'GdImageManipulation' => '/image_manipulation/gd/gd_image_manipulation.class.php',
  286. 'Import' => '/import/import.class.php',
  287. 'Ceo' => '/ims/chamilo/ceo.class.php',
  288. 'Chamilo' => '/ims/chamilo/chamilo.class.php',
  289. 'Log' => '/ims/chamilo/log.class.php',
  290. 'OnlineLog' => '/ims/chamilo/log.class.php',
  291. 'EmptyLog' => '/ims/chamilo/log.class.php',
  292. 'ObjectCache' => '/ims/chamilo/object_cache.class.php',
  293. 'BufferedObjectExport' => '/ims/chamilo/export/buffered_object_export.class.php',
  294. 'EmptyObjectExport' => '/ims/chamilo/export/empty_object_export.class.php',
  295. 'ObjectExportFactory' => '/ims/chamilo/export/object_export_factory.class.php',
  296. 'ObjectExportSettings' => '/ims/chamilo/export/object_export_settings.class.php',
  297. 'BufferedObjectImport' => '/ims/chamilo/import/buffered_object_import.class.php',
  298. 'EmptyObjectImport' => '/ims/chamilo/import/empty_object_import.class.php',
  299. 'ObjectImportFactory' => '/ims/chamilo/import/object_import_factory.class.php',
  300. 'ObjectImportSettings' => '/ims/chamilo/import/object_import_settings.class.php',
  301. 'ImsIdFactory' => '/ims/common/ims_id_factory.class.php',
  302. 'ImsXmlReader' => '/ims/common/reader/ims_xml_reader.class.php',
  303. 'ImsXmlReaderTopDownIterator' => '/ims/common/reader/ims_xml_reader.class.php',
  304. 'ImsXmlReaderEmpty' => '/ims/common/reader/ims_xml_reader_empty.class.php',
  305. 'ImsIteratorEmpty' => '/ims/common/reader/ims_xml_reader_empty.class.php',
  306. 'ImsXmlWriter' => '/ims/common/writer/ims_xml_writer.class.php',
  307. 'LomWriter' => '/ims/common/writer/lom_writer.class.php',
  308. 'Cp' => '/ims/cp/cp.class.php',
  309. 'ImscpManifestReader' => '/ims/cp/reader/imscp_manifest_reader.class.php',
  310. 'ImscpObjectReader' => '/ims/cp/reader/imscp_object_reader.class.php',
  311. 'ImscpManifestWriter' => '/ims/cp/writer/imscp_manifest_writer.class.php',
  312. 'ImscpObjectWriter' => '/ims/cp/writer/imscp_object_writer.class.php',
  313. 'DebugUtil2' => '/ims/lib/debug_util.class.php',
  314. 'FileUtil' => '/ims/lib/file_util.class.php',
  315. 'MathML' => '/ims/lib/math_ml.class.php',
  316. 'shape' => '/ims/lib/shape.class.php',
  317. 'Wildcard' => '/ims/lib/wildcard.class.php',
  318. 'Xhtml' => '/ims/lib/xhtml.class.php',
  319. 'Qti' => '/ims/qti/qti.class.php',
  320. 'QtiEmptyResourceManager' => '/ims/qti/qti_empty_resource_manager.class.php',
  321. 'QtiExportResourceManager' => '/ims/qti/qti_export_resource_manager.class.php',
  322. 'QtiImportResourceManager' => '/ims/qti/qti_import_resource_manager.class.php',
  323. 'QtiInterpreter' => '/ims/qti/qti_interpreter.class.php',
  324. 'QtiPartialRenderer' => '/ims/qti/qti_partial_renderer.class.php',
  325. 'QtiRendererBase' => '/ims/qti/qti_renderer_base.class.php',
  326. 'QtiResourceManagerBase' => '/ims/qti/qti_resource_manager_base.class.php',
  327. 'QtiImportStrategyBase' => '/ims/qti/import_strategy/qti_import_strategy_base.class.php',
  328. 'QtiImportStrategyChain' => '/ims/qti/import_strategy/qti_import_strategy_chain.class.php',
  329. 'QtiImportStrategyEmpty' => '/ims/qti/import_strategy/qti_import_strategy_empty.class.php',
  330. 'QtiImportStrategyFailover' => '/ims/qti/import_strategy/qti_import_strategy_failover.class.php',
  331. 'QtiImportStrategyGeneric' => '/ims/qti/import_strategy/qti_import_strategy_generic.class.php',
  332. 'QtiImportStrategyText' => '/ims/qti/import_strategy/qti_import_strategy_text.class.php',
  333. 'QtiMoodleReimportStrategy' => '/ims/qti/import_strategy/qti_moodle_reimport_strategy.class.php',
  334. 'ImsQtiReader' => '/ims/qti/reader/ims_qti_reader.class.php',
  335. 'ImsQtiWriter' => '/ims/qti/writer/ims_qti_writer.class.php',
  336. 'AdministrationComponent' => '/interface/administration_component.class.php',
  337. 'AttachmentSupport' => '/interface/attachment_support.class.php',
  338. 'Categorizable' => '/interface/categorizable.class.php',
  339. 'ChangeablePassword' => '/interface/changeable_password.class.php',
  340. 'ChangeableUsername' => '/interface/changeable_username.class.php',
  341. 'ComplexContentObjectDisclosure' => '/interface/complex_content_object_disclosure.class.php',
  342. 'ComplexContentObjectSupport' => '/interface/complex_content_object_support.class.php',
  343. 'ComplexMenuSupport' => '/interface/complex_menu_support.class.php',
  344. 'DelegateComponent' => '/interface/delegate_component.class.php',
  345. 'ForcedVersionSupport' => '/interface/forced_version_support.class.php',
  346. 'HelperContentObjectSupport' => '/interface/helper_content_object_support.class.php',
  347. 'Includeable' => '/interface/includeable.class.php',
  348. 'NoContextComponent' => '/interface/no_context_component.class.php',
  349. 'UserRegistrationSupport' => '/interface/user_registration_support.class.php',
  350. 'Versionable' => '/interface/versionable.class.php',
  351. 'JavascriptUtilities' => '/javascript/javascript_utilities.class.php',
  352. 'AttachmentViewerLauncher' => '/launcher/attachment_viewer/attachment_viewer_launcher.class.php',
  353. 'ComplexBuilderLauncher' => '/launcher/complex_builder/complex_builder_launcher.class.php',
  354. 'ComplexDisplayPreviewLauncher' => '/launcher/complex_display_preview/complex_display_preview_launcher.class.php',
  355. 'ExternalRepositoryLauncher' => '/launcher/external_repository/external_repository_launcher.class.php',
  356. 'HtmlEditorFileLauncher' => '/launcher/html_editor_file/html_editor_file_launcher.class.php',
  357. 'RepoViewerLauncher' => '/launcher/repo_viewer/repo_viewer_launcher.class.php',
  358. 'VideoConferencingLauncher' => '/launcher/video_conferencing/video_conferencing_launcher.class.php',
  359. 'Mail' => '/mail/mail.class.php',
  360. 'DefaultMail' => '/mail/default/default_mail.class.php',
  361. 'PhpmailerMail' => '/mail/phpmailer/phpmailer_mail.class.php',
  362. 'MimeUtil' => '/mime/mime_util.class.php',
  363. 'PublicationRSS' => '/rss/publication_rss.class.php',
  364. 'RSSEngine' => '/rss/rss_engine.class.php',
  365. 'BasicRSS' => '/rss/builders/basic_rss.class.php',
  366. 'CombinedRSS' => '/rss/builders/combined_rss.class.php',
  367. 'Channel' => '/rss/objects/channel.class.php',
  368. 'CombinedChannel' => '/rss/objects/combined_channel.class.php',
  369. 'RSSStream' => '/rss/objects/rss_stream.class.php',
  370. 'Security' => '/security/security.class.php',
  371. 'Cookie' => '/session/cookie.class.php',
  372. 'Request' => '/session/request.class.php',
  373. 'Session' => '/session/session.class.php',
  374. 'SessionHandler' => '/session/session_handler.class.php',
  375. 'ArrayResultSet' => '/storage/array_result_set.class.php',
  376. 'ConditionTranslator' => '/storage/condition_translator.class.php',
  377. 'DataClass' => '/storage/data_class.class.php',
  378. 'NestedTreeNode' => '/storage/nested_tree_node.class.php',
  379. 'ResultSet' => '/storage/result_set.class.php',
  380. 'StorageAliasGenerator' => '/storage/storage_alias_generator.class.php',
  381. 'DoctrineConditionTranslator' => '/storage/doctrine/condition_translator.class.php',
  382. 'DoctrineConnection' => '/storage/doctrine/connection.class.php',
  383. 'DoctrineDatabase' => '/storage/doctrine/database.class.php',
  384. 'DoctrineResultSet' => '/storage/doctrine/result_set.class.php',
  385. 'Mdb2ConditionTranslator' => '/storage/mdb2/condition_translator.class.php',
  386. 'Mdb2Connection' => '/storage/mdb2/connection.class.php',
  387. 'Mdb2Database' => '/storage/mdb2/database.class.php',
  388. 'Mdb2ResultSet' => '/storage/mdb2/result_set.class.php',
  389. 'DatabaseBackup' => '/storage/mdb2/backup/database_backup.class.php',
  390. 'MysqlBackup' => '/storage/mdb2/backup/types/mysql_backup.class.php',
  391. 'SimpleTemplate' => '/string/simple_template.class.php',
  392. 'StringUtilities' => '/string/string_utilities.class.php',
  393. 'CacheData' => '/system_cache/cache_data.class.php',
  394. 'CacheDataTransient' => '/system_cache/cache_data_transient.class.php',
  395. 'CacheSynch' => '/system_cache/cache_synch.class.php',
  396. 'ClientCache' => '/system_cache/client_cache.class.php',
  397. 'ExitAction' => '/system_cache/exit_action.class.php',
  398. 'FileCache' => '/system_cache/file_cache.class.php',
  399. 'ResourceCache' => '/system_cache/resource_cache.class.php',
  400. 'SystemCache' => '/system_cache/system_cache.class.php',
  401. 'ChamiloTestSuite' => '/test/chamilo_test_suite.class.php',
  402. 'Translation' => '/translation/translation.class.php',
  403. 'application_generator\MyTemplate' => '/util/application_generator/my_template.class.php',
  404. 'application_generator\AutoloaderGenerator' => '/util/application_generator/autoloader_generator/autoloader_generator.class.php',
  405. 'application_generator\ComponentGenerator' => '/util/application_generator/component_generator/component_generator.class.php',
  406. 'application_generator\DataClassGenerator' => '/util/application_generator/data_class_generator/data_class_generator.class.php',
  407. 'application_generator\DataManagerGenerator' => '/util/application_generator/data_manager_generator/data_manager_generator.class.php',
  408. 'application_generator\FormGenerator' => '/util/application_generator/form_generator/form_generator.class.php',
  409. 'application_generator\InstallGenerator' => '/util/application_generator/install_generator/install_generator.class.php',
  410. 'application_generator\ManagerGenerator' => '/util/application_generator/manager_generator/manager_generator.class.php',
  411. 'application_generator\PackageInfoGenerator' => '/util/application_generator/package_info_generator/package_info_generator.class.php',
  412. 'application_generator\RightsGenerator' => '/util/application_generator/rights_generator/rights_generator.class.php',
  413. 'application_generator\SortableTableGenerator' => '/util/application_generator/sortable_table_generator/sortable_table_generator.class.php',
  414. 'content_object_generator\MyTemplate' => '/util/content_object_generator/my_template.class.php',
  415. 'content_object_generator\AdditionalClassGenerator' => '/util/content_object_generator/additional_class_generator/additional_class_generator.class.php',
  416. 'content_object_generator\DataClassGenerator' => '/util/content_object_generator/data_class_generator/data_class_generator.class.php',
  417. 'content_object_generator\FormGenerator' => '/util/content_object_generator/form_generator/form_generator.class.php',
  418. 'content_object_generator\PackageInfoGenerator' => '/util/content_object_generator/package_info_generator/package_info_generator.class.php',
  419. 'data_class_generator\MyTemplate' => '/util/data_class_generator/my_template.class.php',
  420. 'data_class_generator\DataClassGenerator' => '/util/data_class_generator/data_class_generator/data_class_generator.class.php',
  421. 'application\discovery\module\profile\implementation\bamaflex\PreviousCollege' => '/util/data_class_generator/xml_schemas/php/application/discovery/module/profile/implementation/bamaflex/php/lib/previous_college.class.php',
  422. 'application\discovery\module\profile\implementation\bamaflex\PreviousUniversity' => '/util/data_class_generator/xml_schemas/php/application/discovery/module/profile/implementation/bamaflex/php/lib/previous_university.class.php',
  423. 'application\elude\MatterhornRightsLocationEntityRight' => '/util/data_class_generator/xml_schemas/php/application/elude/php/lib/matterhorn_rights_location_entity_right.class.php',
  424. 'RssIconGenerator' => '/util/rss_icon_generator/rss_icon_generator.class.php',
  425. 'AutoloaderUtilities' => '/util/various/autoloader_utilities.class.php',
  426. 'CodeUtilities' => '/util/various/code_utilities.class.php',
  427. 'Validator' => '/validator/validator.class.php',
  428. 'Webservice' => '/webservice/webservice.class.php',
  429. 'WebserviceAuthentication' => '/webservice/authentication/webservice_authentication.class.php',
  430. 'ChamiloWebserviceAuthentication' => '/webservice/authentication/chamilo/chamilo_webservice_authentication.class.php',
  431. 'DigestWebserviceAuthentication' => '/webservice/authentication/digest/digest_webservice_authentication.class.php',
  432. 'OauthWebserviceAuthentication' => '/webservice/authentication/oauth/oauth_webservice_authentication.class.php',
  433. 'ChamiloRestServer' => '/webservice/rest/chamilo_rest_server.class.php',
  434. 'NoAuthenticationWebservice' => '/webservice/rest/no_authentication_webservice.class.php',
  435. 'RestMessageRenderer' => '/webservice/rest/rest_message_renderer.class.php',
  436. 'RestServer' => '/webservice/rest/rest_server.class.php',
  437. 'SuccessRestMessage' => '/webservice/rest/success_rest_message.class.php',
  438. 'WebserviceHandler' => '/webservice/rest/webservice_handler.class.php',
  439. 'RestAuthentication' => '/webservice/rest/client/rest_authentication.class.php',
  440. 'RestData' => '/webservice/rest/client/rest_data.class.php',
  441. 'CurlBasicRestAuthentication' => '/webservice/rest/client/authentication/curl/curl_basic_rest_authentication.class.php',
  442. 'CurlDigestRestAuthentication' => '/webservice/rest/client/authentication/curl/curl_digest_rest_authentication.class.php',
  443. 'CurlRestClient' => '/webservice/rest/client/type/pear_rest_client.class.php',
  444. 'FormRestData' => '/webservice/rest/client/data/form_data.class.php',
  445. 'PlainRestData' => '/webservice/rest/client/data/plain_data.class.php',
  446. 'UrlRestData' => '/webservice/rest/client/data/url_data.class.php',
  447. 'HtmlRestResult' => '/webservice/rest/client/result/html_rest_result.class.php',
  448. 'JsonRestResult' => '/webservice/rest/client/result/json_rest_result.class.php',
  449. 'PlainRestResult' => '/webservice/rest/client/result/plain_rest_result.class.php',
  450. 'XmlRestResult' => '/webservice/rest/client/result/xml_rest_result.class.php',
  451. 'CreateObjectWebserviceHandler' => '/webservice/rest/handler/create_object_webservice_handler.class.php',
  452. 'DeleteObjectWebserviceHandler' => '/webservice/rest/handler/delete_object_webservice_handler.class.php',
  453. 'GetObjectListWebserviceHandler' => '/webservice/rest/handler/get_object_list_webservice_handler.class.php',
  454. 'GetObjectWebserviceHandler' => '/webservice/rest/handler/get_object_webservice_handler.class.php',
  455. 'UpdateObjectWebserviceHandler' => '/webservice/rest/handler/update_object_webservice_handler.class.php',
  456. 'HtmlRestMessageRenderer' => '/webservice/rest/rest_message_renderer/html_rest_message_renderer.class.php',
  457. 'JsonRestMessageRenderer' => '/webservice/rest/rest_message_renderer/json_rest_message_renderer.class.php',
  458. 'PlainRestMessageRenderer' => '/webservice/rest/rest_message_renderer/plain_rest_message_renderer.class.php',
  459. 'XmlRestMessageRenderer' => '/webservice/rest/rest_message_renderer/xml_rest_message_renderer.class.php',
  460. 'SoapNusoapWebservice' => '/webservice/soap/nusoap/soap_nusoap_webservice.class.php',
  461. 'XMLUtilities' => '/xml/xml_utilities.class.php',
  462. );
  463. static function load($classname)
  464. {
  465. if (isset(self::$map[$classname]))
  466. {
  467. require_once __DIR__ . self::$map[$classname];
  468. return true;
  469. }
  470. return false;
  471. }
  472. static function synch($update){
  473. return \common\libraries\AutoloaderUtilities::synch(__DIR__, __DIR__, $update);
  474. }
  475. }
  476. ?>