PageRenderTime 40ms CodeModel.GetById 7ms RepoModel.GetById 1ms app.codeStats 0ms

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

https://bitbucket.org/renaatdemuynck/chamilo
PHP | 555 lines | 532 code | 6 blank | 17 comment | 1 complexity | ac2a415c490f23d037b6d88c6c018f71 MD5 | raw file
Possible License(s): BSD-3-Clause, LGPL-2.1, LGPL-3.0, GPL-3.0, MIT, GPL-2.0

Large files files are truncated, but you can click here to view the full file

  1. <?php
  2. namespace common\libraries;
  3. class Autoloader
  4. {
  5. /**
  6. * The array mapping class names to paths
  7. *
  8. * @var multitype:string
  9. */
  10. private static $map = array(
  11. 'Autoloader' => '/shared/util/various/autoloader_utilities.class.php',
  12. 'CommonDataManager' => '/lib/data_manager.class.php',
  13. 'Registration' => '/lib/data_class/registration.class.php',
  14. 'Setting' => '/lib/data_class/setting.class.php',
  15. 'DoctrineDataManager' => '/lib/data_manager/doctrine.class.php',
  16. 'Mdb2DataManager' => '/lib/data_manager/mdb2.class.php',
  17. 'Activator' => '/package/activate/activator.class.php',
  18. 'Deactivator' => '/package/deactivate/deactivator.class.php',
  19. 'Installer' => '/package/install/installer.class.php',
  20. 'Application' => '/shared/application.class.php',
  21. 'ApplicationComponent' => '/shared/application_component.class.php',
  22. 'BasicApplication' => '/shared/basic_application.class.php',
  23. 'Block' => '/shared/block.class.php',
  24. 'BlockConnectorBase' => '/shared/block_connector_base.class.php',
  25. 'CoreApplication' => '/shared/core_application.class.php',
  26. 'CoreApplicationComponent' => '/shared/core_application_component.class.php',
  27. 'LauncherApplication' => '/shared/launcher_application.class.php',
  28. 'Redirect' => '/shared/redirect.class.php',
  29. 'ResourceManager' => '/shared/resource_manager.class.php',
  30. 'SubManager' => '/shared/sub_manager.class.php',
  31. 'SubManagerComponent' => '/shared/sub_manager_component.class.php',
  32. 'Updater' => '/shared/updater.class.php',
  33. 'Utilities' => '/shared/utilities.class.php',
  34. 'WebApplication' => '/shared/web_application.class.php',
  35. 'WebApplicationComponent' => '/shared/web_application_component.class.php',
  36. 'WebApplicationInstaller' => '/shared/web_application_installer.class.php',
  37. 'AjaxManager' => '/shared/ajax/ajax_manager.class.php',
  38. 'CommonAjaxGroupsFeed' => '/shared/ajax/groups_feed.class.php',
  39. 'JsonAjaxResult' => '/shared/ajax/json_ajax_result.class.php',
  40. 'Authentication' => '/shared/authentication/authentication.class.php',
  41. 'ExternalAuthentication' => '/shared/authentication/external_authentication.class.php',
  42. 'CasAuthentication' => '/shared/authentication/cas/cas_authentication.class.php',
  43. 'CasPassword' => '/shared/authentication/cas/cas_password/cas_password.class.php',
  44. 'DefaultCasPassword' => '/shared/authentication/cas/cas_password/type/default_cas_password.class.php',
  45. 'LdapCasPassword' => '/shared/authentication/cas/cas_password/type/ldap_cas_password.class.php',
  46. 'MysqlCasPassword' => '/shared/authentication/cas/cas_password/type/mysql_cas_password.class.php',
  47. 'WebserviceCasPassword' => '/shared/authentication/cas/cas_password/type/webservice_cas_password.class.php',
  48. 'InvitationAuthentication' => '/shared/authentication/invitation/invitation_authentication.class.php',
  49. 'LdapAuthentication' => '/shared/authentication/ldap/ldap_authentication.class.php',
  50. 'LdapParser' => '/shared/authentication/ldap/ldap_parser.class.php',
  51. 'PlatformAuthentication' => '/shared/authentication/platform/platform_authentication.class.php',
  52. 'SecurityTokenAuthentication' => '/shared/authentication/security_token/security_token_authentication.class.php',
  53. 'ShibbolethAuthentication' => '/shared/authentication/shibboleth/shibboleth_authentication.class.php',
  54. 'CalendarTable' => '/shared/calendar/calendar_table.class.php',
  55. 'DayCalendar' => '/shared/calendar/day_calendar.class.php',
  56. 'MiniDayCalendar' => '/shared/calendar/mini_day_calendar.class.php',
  57. 'MiniMonthCalendar' => '/shared/calendar/mini_month_calendar.class.php',
  58. 'MiniWeekCalendar' => '/shared/calendar/mini_week_calendar.class.php',
  59. 'MonthCalendar' => '/shared/calendar/month_calendar.class.php',
  60. 'WeekCalendar' => '/shared/calendar/week_calendar.class.php',
  61. 'YearCalendar' => '/shared/calendar/year_calendar.class.php',
  62. 'AggregateCondition' => '/shared/condition/aggregate_condition.class.php',
  63. 'AndCondition' => '/shared/condition/and_condition.class.php',
  64. 'ComparisonCondition' => '/shared/condition/comparison_condition.class.php',
  65. 'Condition' => '/shared/condition/condition.class.php',
  66. 'EqualityCondition' => '/shared/condition/equality_condition.class.php',
  67. 'InequalityCondition' => '/shared/condition/inequality_condition.class.php',
  68. 'InCondition' => '/shared/condition/in_condition.class.php',
  69. 'MultipleAggregateCondition' => '/shared/condition/multiple_aggregate_condition.class.php',
  70. 'NotCondition' => '/shared/condition/not_condition.class.php',
  71. 'OrCondition' => '/shared/condition/or_condition.class.php',
  72. 'PatternMatchCondition' => '/shared/condition/pattern_match_condition.class.php',
  73. 'SubselectCondition' => '/shared/condition/subselect_condition.class.php',
  74. 'FixedPropertyConditionVariable' => '/shared/condition/variable/fixed_property.class.php',
  75. 'OperationConditionVariable' => '/shared/condition/variable/operation.class.php',
  76. 'PropertyConditionVariable' => '/shared/condition/variable/property.class.php',
  77. 'StaticConditionVariable' => '/shared/condition/variable/static.class.php',
  78. 'ConditionVariable' => '/shared/condition/variable/variable.class.php',
  79. 'Configuration' => '/shared/configuration/configuration.class.php',
  80. 'LocalSetting' => '/shared/configuration/local_setting.class.php',
  81. 'PlatformSetting' => '/shared/configuration/platform_setting.class.php',
  82. 'CssUtilities' => '/shared/css/css_utilities.class.php',
  83. 'DatetimeUtilities' => '/shared/datetime/datetime_utilities.class.php',
  84. 'Timer' => '/shared/datetime/timer.class.php',
  85. 'DebugUtilities' => '/shared/debug/debug_utilities.class.php',
  86. 'Diagnoser' => '/shared/diagnoser/diagnoser.class.php',
  87. 'DiagnoserCellRenderer' => '/shared/diagnoser/diagnoser_cellrenderer.class.php',
  88. 'NotAllowedException' => '/shared/exceptions/not_allowed_exception.class.php',
  89. 'NoObjectSelectedException' => '/shared/exceptions/no_object_selected_exception.class.php',
  90. 'ObjectNotExistException' => '/shared/exceptions/object_not_exist_exception.class.php',
  91. 'ParameterNotDefinedException' => '/shared/exceptions/parameter_not_defined_exception.class.php',
  92. 'Export' => '/shared/export/export.class.php',
  93. 'CsvExport' => '/shared/export/csv/csv_export.class.php',
  94. 'ExcelExport' => '/shared/export/excel/excel_export.class.php',
  95. 'ExcelLayout' => '/shared/export/layout/excel_layout.class.php',
  96. 'OdsExport' => '/shared/export/ods/ods_export.class.php',
  97. 'PdfExport' => '/shared/export/pdf/pdf_export.class.php',
  98. 'XmlExport' => '/shared/export/xml/xml_export.class.php',
  99. 'FedoraProxy' => '/shared/fedora/fedora_proxy.class.php',
  100. 'fedora_fs_access_right' => '/shared/fedora/fs/fedora_fs_access_right.class.php',
  101. 'fedora_fs_base' => '/shared/fedora/fs/fedora_fs_base.class.php',
  102. 'fedora_fs_datastream' => '/shared/fedora/fs/fedora_fs_datastream.class.php',
  103. 'fedora_fs_folder' => '/shared/fedora/fs/fedora_fs_folder.class.php',
  104. 'fedora_fs_history' => '/shared/fedora/fs/fedora_fs_history.class.php',
  105. 'fedora_fs_itql_query' => '/shared/fedora/fs/fedora_fs_itql_query.class.php',
  106. 'fedora_fs_lastobjects' => '/shared/fedora/fs/fedora_fs_lastobjects.class.php',
  107. 'fedora_fs_mystuff' => '/shared/fedora/fs/fedora_fs_mystuff.class.php',
  108. 'fedora_fs_object' => '/shared/fedora/fs/fedora_fs_object.class.php',
  109. 'fedora_fs_search' => '/shared/fedora/fs/fedora_fs_search.class.php',
  110. 'fedora_fs_search_by_id' => '/shared/fedora/fs/fedora_fs_search_by_id.class.php',
  111. 'fedora_fs_sparql_query' => '/shared/fedora/fs/fedora_fs_sparql_query.class.php',
  112. 'fedora_fs_store' => '/shared/fedora/fs/fedora_fs_store.class.php',
  113. 'fedora_fs_subject' => '/shared/fedora/fs/fedora_fs_subject.class.php',
  114. 'FoxmlReader' => '/shared/fedora/reader/foxml_reader.class.php',
  115. 'FedoraXmlReader' => '/shared/fedora/reader/xml_reader.class.php',
  116. 'FedoraXmlReaderTopDownIterator' => '/shared/fedora/reader/xml_reader.class.php',
  117. 'FedoraXmlReaderEmpty' => '/shared/fedora/reader/xml_reader_empty.class.php',
  118. 'IteratorEmpty' => '/shared/fedora/reader/xml_reader_empty.class.php',
  119. 'RestClient' => '/shared/webservice/rest/client/rest_client.class.php',
  120. 'RestConfig' => '/shared/fedora/rest/rest_config.class.php',
  121. 'RestProxyBase' => '/shared/fedora/rest/rest_proxy_base.class.php',
  122. 'RestResult' => '/shared/webservice/rest/client/rest_result.class.php',
  123. 'FoxmlWriter' => '/shared/fedora/writer/foxml_writer.class.php',
  124. 'IdFactory' => '/shared/fedora/writer/id_factory.class.php',
  125. 'XmlWriterBase' => '/shared/fedora/writer/xml_writer_base.class.php',
  126. 'Filecompression' => '/shared/filecompression/filecompression.class.php',
  127. 'PclzipFilecompression' => '/shared/filecompression/pclzip/pclzip_filecompression.class.php',
  128. 'Filesystem' => '/shared/filesystem/filesystem.class.php',
  129. 'FileLogger' => '/shared/filesystem/file_logger.class.php',
  130. 'FileProperties' => '/shared/filesystem/file_properties.class.php',
  131. 'Path' => '/shared/filesystem/path.class.php',
  132. 'WebpageProperties' => '/shared/filesystem/webpage_properties.class.php',
  133. 'Hashing' => '/shared/hashing/hashing.class.php',
  134. 'Haval256Hashing' => '/shared/hashing/haval256/haval256_hashing.class.php',
  135. 'Md5Hashing' => '/shared/hashing/md5/md5_hashing.class.php',
  136. 'Sha1Hashing' => '/shared/hashing/sha1/sha1_hashing.class.php',
  137. 'Sha512Hashing' => '/shared/hashing/sha512/sha512_hashing.class.php',
  138. 'WhirlpoolHashing' => '/shared/hashing/whirlpool/whirlpool_hashing.class.php',
  139. 'Banner' => '/shared/html/banner.class.php',
  140. 'BbcodeParser' => '/shared/html/bbcode_parser.class.php',
  141. 'Breadcrumb' => '/shared/html/breadcrumb.class.php',
  142. 'BreadcrumbTrail' => '/shared/html/breadcrumb_trail.class.php',
  143. 'Display' => '/shared/html/display.class.php',
  144. 'Footer' => '/shared/html/footer.class.php',
  145. 'Header' => '/shared/html/header.class.php',
  146. 'Html5Format' => '/shared/html/html5_format.class.php',
  147. 'Html5MediaValidator' => '/shared/html/html5_media_validator.class.php',
  148. 'MessageLogger' => '/shared/html/message_logger.class.php',
  149. 'NotificationMessage' => '/shared/html/notification_message.class.php',
  150. 'Text' => '/shared/html/text.class.php',
  151. 'ActionBarRenderer' => '/shared/html/action_bar/action_bar_renderer.class.php',
  152. 'ActionBarSearchForm' => '/shared/html/action_bar/action_bar_search_form.class.php',
  153. 'ConditionProperty' => '/shared/html/action_bar/condition_property.class.php',
  154. 'FormValidator' => '/shared/html/formvalidator/form_validator.class.php',
  155. 'FormValidatorHtmlEditor' => '/shared/html/formvalidator/form_validator_html_editor.class.php',
  156. 'FormValidatorHtmlEditorOptions' => '/shared/html/formvalidator/form_validator_html_editor_options.class.php',
  157. 'FormValidatorHtmlEditorTemplates' => '/shared/html/formvalidator/form_validator_html_editor_templates.class.php',
  158. 'FormValidatorPage' => '/shared/html/formvalidator/form_validator_page.class.php',
  159. 'FormValidatorTab' => '/shared/html/formvalidator/form_validator_tab.class.php',
  160. 'WizardPageValidator' => '/shared/html/formvalidator/wizard_page_validator.class.php',
  161. 'SettingsXmlFormParser' => '/shared/html/formvalidator/dynamic_form_building/settings_xml_form_parser.class.php',
  162. 'XmlFormParser' => '/shared/html/formvalidator/dynamic_form_building/xml_form_parser.class.php',
  163. 'XmlFormParserResult' => '/shared/html/formvalidator/dynamic_form_building/xml_form_parser_result.class.php',
  164. 'XmlFormParserValidationRule' => '/shared/html/formvalidator/dynamic_form_building/xml_form_parser_validation_rule.class.php',
  165. 'AdvancedElementFinderElement' => '/shared/html/formvalidator/Element/advanced_element_finder/advanced_element_finder_element.class.php',
  166. 'AdvancedElementFinderElements' => '/shared/html/formvalidator/Element/advanced_element_finder/advanced_element_finder_elements.class.php',
  167. 'AdvancedElementFinderElementType' => '/shared/html/formvalidator/Element/advanced_element_finder/advanced_element_finder_element_type.class.php',
  168. 'AdvancedElementFinderElementTypes' => '/shared/html/formvalidator/Element/advanced_element_finder/advanced_element_finder_element_types.class.php',
  169. 'FormValidatorCkeditorHtmlEditor' => '/shared/html/formvalidator/html_editor/ckeditor_html_editor.class.php',
  170. 'FormValidatorTinymceHtmlEditor' => '/shared/html/formvalidator/html_editor/tinymce_html_editor.class.php',
  171. 'HtmlEditorProcessor' => '/shared/html/formvalidator/html_editor/file_browser/processor/html_editor_processor.class.php',
  172. 'HtmlEditorCkeditorAudioProcessor' => '/shared/html/formvalidator/html_editor/file_browser/processor/ckeditor/html_editor_ckeditor_audio_processor.class.php',
  173. 'HtmlEditorCkeditorChamiloProcessor' => '/shared/html/formvalidator/html_editor/file_browser/processor/ckeditor/html_editor_ckeditor_chamilo_processor.class.php',
  174. 'HtmlEditorCkeditorDailymotionProcessor' => '/shared/html/formvalidator/html_editor/file_browser/processor/ckeditor/html_editor_ckeditor_dailymotion_processor.class.php',
  175. 'HtmlEditorCkeditorFlashProcessor' => '/shared/html/formvalidator/html_editor/file_browser/processor/ckeditor/html_editor_ckeditor_flash_processor.class.php',
  176. 'HtmlEditorCkeditorFlashVideoProcessor' => '/shared/html/formvalidator/html_editor/file_browser/processor/ckeditor/html_editor_ckeditor_flash_video_processor.class.php',
  177. 'HtmlEditorCkeditorHandbookItemProcessor' => '/shared/html/formvalidator/html_editor/file_browser/processor/ckeditor/html_editor_ckeditor_handbook_item_processor.class.php',
  178. 'HtmlEditorCkeditorImageProcessor' => '/shared/html/formvalidator/html_editor/file_browser/processor/ckeditor/html_editor_ckeditor_image_processor.class.php',
  179. 'HtmlEditorCkeditorVideoProcessor' => '/shared/html/formvalidator/html_editor/file_browser/processor/ckeditor/html_editor_ckeditor_video_processor.class.php',
  180. 'HtmlEditorCkeditorVimeoProcessor' => '/shared/html/formvalidator/html_editor/file_browser/processor/ckeditor/html_editor_ckeditor_vimeo_processor.class.php',
  181. 'HtmlEditorCkeditorYoutubeProcessor' => '/shared/html/formvalidator/html_editor/file_browser/processor/ckeditor/html_editor_ckeditor_youtube_processor.class.php',
  182. 'HtmlEditorRepoViewer' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/html_editor_repo_viewer.class.php',
  183. 'HtmlEditorChamiloRepoViewer' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/chamilo/html_editor_chamilo_repo_viewer.class.php',
  184. 'HtmlEditorChamiloRepoViewerBrowserComponent' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/chamilo/component/browser.class.php',
  185. 'HtmlEditorChamiloRepoViewerCreatorComponent' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/chamilo/component/creator.class.php',
  186. 'HtmlEditorChamiloRepoViewerImportedSelecterComponent' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/chamilo/component/imported_selecter.class.php',
  187. 'HtmlEditorChamiloRepoViewerImporterComponent' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/chamilo/component/importer.class.php',
  188. 'HtmlEditorChamiloRepoViewerViewerComponent' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/chamilo/component/viewer.class.php',
  189. 'ImageContentObjectTable' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/chamilo/component/content_object_table/image_content_object_table.class.php',
  190. 'ImageContentObjectTableCellRenderer' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/chamilo/component/content_object_table/image_content_object_table_cell_renderer.class.php',
  191. 'ImageContentObjectTableColumnModel' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/chamilo/component/content_object_table/image_content_object_table_column_model.class.php',
  192. 'ImageContentObjectTableDataProvider' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/chamilo/component/content_object_table/image_content_object_table_data_provider.class.php',
  193. 'HtmlEditorHandbookItemRepoViewer' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/handbook_item/html_editor_handbook_item_repo_viewer.class.php',
  194. 'HtmlEditorHandbookItemRepoViewerBrowserComponent' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/handbook_item/component/browser.class.php',
  195. 'HtmlEditorHandbookItemRepoViewerCreatorComponent' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/handbook_item/component/creator.class.php',
  196. 'HtmlEditorHandbookItemRepoViewerViewerComponent' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/handbook_item/component/viewer.class.php',
  197. 'HandbookItemContentObjectTable' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/handbook_item/component/content_object_table/handbook_item_content_object_table.class.php',
  198. 'HandbookItemContentObjectTableCellRenderer' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/handbook_item/component/content_object_table/handbook_item_content_object_table_cell_renderer.class.php',
  199. 'HandbookItemContentObjectTableColumnModel' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/handbook_item/component/content_object_table/handbook_item_content_object_table_column_model.class.php',
  200. 'HandbookItemContentObjectTableDataProvider' => '/shared/html/formvalidator/html_editor/file_browser/repo_viewer/handbook_item/component/content_object_table/handbook_item_content_object_table_data_provider.class.php',
  201. 'FormValidatorCkeditorHtmlEditorOptions' => '/shared/html/formvalidator/html_editor_options/ckeditor_html_editor_options.class.php',
  202. 'FormValidatorTinymceHtmlEditorOptions' => '/shared/html/formvalidator/html_editor_options/tinymce_html_editor_options.class.php',
  203. 'FormValidatorCkeditorHtmlEditorTemplates' => '/shared/html/formvalidator/html_editor_templates/ckeditor_html_editor_templates.class.php',
  204. 'FormValidatorTinymceHtmlEditorTemplates' => '/shared/html/formvalidator/html_editor_templates/tinymce_html_editor_templates.class.php',
  205. 'ChamiloTemplate' => '/shared/html/layout/chamilo_template.class.php',
  206. 'ChamiloTemplateCompiler' => '/shared/html/layout/chamilo_template_compiler.class.php',
  207. 'Phpbb2TemplateWrapper' => '/shared/html/layout/phpbb2_template_wrapper.class.php',
  208. 'TemplateCache' => '/shared/html/layout/template_cache.class.php',
  209. 'Theme' => '/shared/html/layout/theme.class.php',
  210. 'ThemeManager' => '/shared/html/layout/theme_manager.class.php',
  211. 'DatabaseTemplateCache' => '/shared/html/layout/template_cache/database_template_cache.class.php',
  212. 'FileTemplateCache' => '/shared/html/layout/template_cache/file_template_cache.class.php',
  213. 'CollapsedTreeMenuRenderer' => '/shared/html/menu/collapsed_tree_menu_renderer.class.php',
  214. 'DragAndDropTreeMenuRenderer' => '/shared/html/menu/drag_and_drop_tree_menu_renderer.class.php',
  215. 'OptionsMenuRenderer' => '/shared/html/menu/options_menu_renderer.class.php',
  216. 'TreeMenuRenderer' => '/shared/html/menu/tree_menu_renderer.class.php',
  217. 'XmlTreeMenuRenderer' => '/shared/html/menu/xml_tree_menu_renderer.class.php',
  218. 'DynamicContentMenu' => '/shared/html/menu/dynamic_content_menu/dynamic_content_menu.class.php',
  219. 'DynamicContentMenuItem' => '/shared/html/menu/dynamic_content_menu/dynamic_content_menu_item.class.php',
  220. 'FormDynamicContentMenu' => '/shared/html/menu/dynamic_content_menu/form_dynamic_content_menu.class.php',
  221. 'FormDynamicContentMenuItem' => '/shared/html/menu/dynamic_content_menu/form_dynamic_content_menu_item.class.php',
  222. 'GenericTree' => '/shared/html/menu/tree_menu/generic_tree.class.php',
  223. 'GenericTreeInterface' => '/shared/html/menu/tree_menu/generic_tree_interface.class.php',
  224. 'TreeMenu' => '/shared/html/menu/tree_menu/tree_menu.class.php',
  225. 'TreeMenuDataProvider' => '/shared/html/menu/tree_menu/tree_menu_data_provider.class.php',
  226. 'TreeMenuItem' => '/shared/html/menu/tree_menu/tree_menu_item.class.php',
  227. 'Panel' => '/shared/html/splitpanel/panel.class.php',
  228. 'SplitPanelRenderer' => '/shared/html/splitpanel/split_panel_renderer.class.php',
  229. 'GalleryTable' => '/shared/html/table/gallery_table.class.php',
  230. 'GalleryTableFromArray' => '/shared/html/table/gallery_table.class.php',
  231. 'PropertiesTable' => '/shared/html/table/properties_table.class.php',
  232. 'SimpleTable' => '/shared/html/table/simple_table.class.php',
  233. 'SortableTable' => '/shared/html/table/sortable_table.class.php',
  234. 'SortableTableFromArray' => '/shared/html/table/sortable_table.class.php',
  235. 'StaticTableColumn' => '/shared/html/table/static_table_column.class.php',
  236. 'TableColumn' => '/shared/html/table/table_column.class.php',
  237. 'TableSort' => '/shared/html/table/table_sort.class.php',
  238. 'GalleryObjectTable' => '/shared/html/table/gallery_object_table/gallery_object_table.class.php',
  239. 'GalleryObjectTableCellRenderer' => '/shared/html/table/gallery_object_table/gallery_object_table_cell_renderer.class.php',
  240. 'GalleryObjectTableDataProvider' => '/shared/html/table/gallery_object_table/gallery_object_table_data_provider.class.php',
  241. 'GalleryObjectTableProperty' => '/shared/html/table/gallery_object_table/gallery_object_table_property.class.php',
  242. 'GalleryObjectTablePropertyModel' => '/shared/html/table/gallery_object_table/gallery_object_table_property_model.class.php',
  243. 'NewGalleryObjectTable' => '/shared/html/table/new_gallery_object_table/new_gallery_object_table.class.php',
  244. 'NewGalleryObjectTableCellRenderer' => '/shared/html/table/new_gallery_object_table/new_gallery_object_table_cell_renderer.class.php',
  245. 'NewGalleryObjectTableCellRendererActionsSupport' => '/shared/html/table/new_gallery_object_table/new_gallery_object_table_cell_renderer_actions_support.class.php',
  246. 'NewGalleryObjectTableDataProvider' => '/shared/html/table/new_gallery_object_table/new_gallery_object_table_data_provider.class.php',
  247. 'NewGalleryObjectTableOrderDirectionProhibition' => '/shared/html/table/new_gallery_object_table/new_gallery_object_table_order_direction_prohibition.class.php',
  248. 'NewGalleryObjectTablePropertyModel' => '/shared/html/table/new_gallery_object_table/new_gallery_object_table_property_model.class.php',
  249. 'NewGalleryObjectTableSupport' => '/shared/html/table/new_gallery_object_table/new_gallery_object_table_support.class.php',
  250. 'NewObjectTable' => '/shared/html/table/new_object_table/new_object_table.class.php',
  251. 'NewObjectTableAjaxSupport' => '/shared/html/table/new_object_table/new_object_table_ajax_support.class.php',
  252. 'NewObjectTableCellRenderer' => '/shared/html/table/new_object_table/new_object_table_cell_renderer.class.php',
  253. 'NewObjectTableColumnModel' => '/shared/html/table/new_object_table/new_object_table_column_model.class.php',
  254. 'NewObjectTableDataProvider' => '/shared/html/table/new_object_table/new_object_table_data_provider.class.php',
  255. 'NewObjectTableFormActionsSupport' => '/shared/html/table/new_object_table/new_object_table_form_actions_support.class.php',
  256. 'NewObjectTablePageSelectionProhibition' => '/shared/html/table/new_object_table/new_object_table_page_selection_prohibition.class.php',
  257. 'NewObjectTableSupport' => '/shared/html/table/new_object_table/new_object_table_support.class.php',
  258. 'NewObjectTableActionsColumn' => '/shared/html/table/new_object_table/actions_column/new_object_table_actions_column.class.php',
  259. 'NewObjectTableCellRendererActionsColumnSupport' => '/shared/html/table/new_object_table/actions_column/new_object_table_cell_renderer_actions_column_support.class.php',
  260. 'NewObjectTableColumnModelActionsColumnSupport' => '/shared/html/table/new_object_table/actions_column/new_object_table_column_model_actions_column_support.class.php',
  261. 'ObjectTable' => '/shared/html/table/object_table/object_table.class.php',
  262. 'ObjectTableCellRenderer' => '/shared/html/table/object_table/object_table_cell_renderer.class.php',
  263. 'ObjectTableColumn' => '/shared/html/table/object_table/object_table_column.class.php',
  264. 'ObjectTableColumnModel' => '/shared/html/table/object_table/object_table_column_model.class.php',
  265. 'ObjectTableDataProvider' => '/shared/html/table/object_table/object_table_data_provider.class.php',
  266. 'ObjectTableFormAction' => '/shared/html/table/object_table/object_table_form_action.class.php',
  267. 'ObjectTableFormActions' => '/shared/html/table/object_table/object_table_form_actions.class.php',
  268. 'ObjectTableOrder' => '/shared/html/table/object_table/object_table_order.class.php',
  269. 'DynamicAction' => '/shared/html/tabs/dynamic_action.class.php',
  270. 'DynamicActionsTab' => '/shared/html/tabs/dynamic_actions_tab.class.php',
  271. 'DynamicContentTab' => '/shared/html/tabs/dynamic_content_tab.class.php',
  272. 'DynamicFormElementsTab' => '/shared/html/tabs/dynamic_form_elements_tab.class.php',
  273. 'DynamicFormTab' => '/shared/html/tabs/dynamic_form_tab.class.php',
  274. 'DynamicFormTabsRenderer' => '/shared/html/tabs/dynamic_form_tabs_renderer.class.php',
  275. 'DynamicSearchAction' => '/shared/html/tabs/dynamic_search_action.class.php',
  276. 'DynamicTab' => '/shared/html/tabs/dynamic_tab.class.php',
  277. 'DynamicTabsRenderer' => '/shared/html/tabs/dynamic_tabs_renderer.class.php',
  278. 'DynamicVisualTab' => '/shared/html/tabs/dynamic_visual_tab.class.php',
  279. 'DynamicVisualTabsRenderer' => '/shared/html/tabs/dynamic_visual_tabs_renderer.class.php',
  280. 'Toolbar' => '/shared/html/toolbar/toolbar.class.php',
  281. 'ToolbarItem' => '/shared/html/toolbar/toolbar_item.class.php',
  282. 'HttpHeader' => '/shared/http/http_header.class.php',
  283. 'IcalRecurrence' => '/shared/ical/ical_recurrence.class.php',
  284. 'ImageManipulation' => '/shared/image_manipulation/image_manipulation.class.php',
  285. 'GdImageManipulation' => '/shared/image_manipulation/gd/gd_image_manipulation.class.php',
  286. 'Import' => '/shared/import/import.class.php',
  287. 'Ceo' => '/shared/ims/chamilo/ceo.class.php',
  288. 'Chamilo' => '/shared/ims/chamilo/chamilo.class.php',
  289. 'Log' => '/shared/ims/chamilo/log.class.php',
  290. 'OnlineLog' => '/shared/ims/chamilo/log.class.php',
  291. 'EmptyLog' => '/shared/ims/chamilo/log.class.php',
  292. 'ObjectCache' => '/shared/ims/chamilo/object_cache.class.php',
  293. 'BufferedObjectExport' => '/shared/ims/chamilo/export/buffered_object_export.class.php',
  294. 'EmptyObjectExport' => '/shared/ims/chamilo/export/empty_object_export.class.php',
  295. 'ObjectExportFactory' => '/shared/ims/chamilo/export/object_export_factory.class.php',
  296. 'ObjectExportSettings' => '/shared/ims/chamilo/export/object_export_settings.class.php',
  297. 'BufferedObjectImport' => '/shared/ims/chamilo/import/buffered_object_import.class.php',
  298. 'EmptyObjectImport' => '/shared/ims/chamilo/import/empty_object_import.class.php',
  299. 'ObjectImportFactory' => '/shared/ims/chamilo/import/object_import_factory.class.php',
  300. 'ObjectImportSettings' => '/shared/ims/chamilo/import/object_import_settings.class.php',
  301. 'ImsIdFactory' => '/shared/ims/common/ims_id_factory.class.php',
  302. 'ImsXmlReader' => '/shared/ims/common/reader/ims_xml_reader.class.php',
  303. 'ImsXmlReaderTopDownIterator' => '/shared/ims/common/reader/ims_xml_reader.class.php',
  304. 'ImsXmlReaderEmpty' => '/shared/ims/common/reader/ims_xml_reader_empty.class.php',
  305. 'ImsIteratorEmpty' => '/shared/ims/common/reader/ims_xml_reader_empty.class.php',
  306. 'ImsXmlWriter' => '/shared/ims/common/writer/ims_xml_writer.class.php',
  307. 'LomWriter' => '/shared/ims/common/writer/lom_writer.class.php',
  308. 'Cp' => '/shared/ims/cp/cp.class.php',
  309. 'ImscpManifestReader' => '/shared/ims/cp/reader/imscp_manifest_reader.class.php',
  310. 'ImscpObjectReader' => '/shared/ims/cp/reader/imscp_object_reader.class.php',
  311. 'ImscpManifestWriter' => '/shared/ims/cp/writer/imscp_manifest_writer.class.php',
  312. 'ImscpObjectWriter' => '/shared/ims/cp/writer/imscp_object_writer.class.php',
  313. 'DebugUtil2' => '/shared/ims/lib/debug_util.class.php',
  314. 'FileUtil' => '/shared/ims/lib/file_util.class.php',
  315. 'MathML' => '/shared/ims/lib/math_ml.class.php',
  316. 'shape' => '/shared/ims/lib/shape.class.php',
  317. 'Wildcard' => '/shared/ims/lib/wildcard.class.php',
  318. 'Xhtml' => '/shared/ims/lib/xhtml.class.php',
  319. 'Qti' => '/shared/ims/qti/qti.class.php',
  320. 'QtiEmptyResourceManager' => '/shared/ims/qti/qti_empty_resource_manager.class.php',
  321. 'QtiExportResourceManager' => '/shared/ims/qti/qti_export_resource_manager.class.php',
  322. 'QtiImportResourceManager' => '/shared/ims/qti/qti_import_resource_manager.class.php',
  323. 'QtiInterpreter' => '/shared/ims/qti/qti_interpreter.class.php',
  324. 'QtiPartialRenderer' => '/shared/ims/qti/qti_partial_renderer.class.php',
  325. 'QtiRendererBase' => '/shared/ims/qti/qti_renderer_base.class.php',
  326. 'QtiResourceManagerBase' => '/shared/ims/qti/qti_resource_manager_base.class.php',
  327. 'QtiImportStrategyBase' => '/shared/ims/qti/import_strategy/qti_import_strategy_base.class.php',
  328. 'QtiImportStrategyChain' => '/shared/ims/qti/import_strategy/qti_import_strategy_chain.class.php',
  329. 'QtiImportStrategyEmpty' => '/shared/ims/qti/import_strategy/qti_import_strategy_empty.class.php',
  330. 'QtiImportStrategyFailover' => '/shared/ims/qti/import_strategy/qti_import_strategy_failover.class.php',
  331. 'QtiImportStrategyGeneric' => '/shared/ims/qti/import_strategy/qti_import_strategy_generic.class.php',
  332. 'QtiImportStrategyText' => '/shared/ims/qti/import_strategy/qti_import_strategy_text.class.php',
  333. 'QtiMoodleReimportStrategy' => '/shared/ims/qti/import_strategy/qti_moodle_reimport_strategy.class.php',
  334. 'ImsQtiReader' => '/shared/ims/qti/reader/ims_qti_reader.class.php',
  335. 'ImsQtiWriter' => '/shared/ims/qti/writer/ims_qti_writer.class.php',
  336. 'AdministrationComponent' => '/shared/interface/administration_component.class.php',
  337. 'AttachmentSupport' => '/shared/interface/attachment_support.class.php',
  338. 'Autosavable' => '/shared/interface/autosavable.class.php',
  339. 'Categorizable' => '/shared/interface/categorizable.class.php',
  340. 'ChangeablePassword' => '/shared/interface/changeable_password.class.php',
  341. 'ChangeableUsername' => '/shared/interface/changeable_username.class.php',
  342. 'ComplexContentObjectDisclosure' => '/shared/interface/complex_content_object_disclosure.class.php',
  343. 'ComplexContentObjectSupport' => '/shared/interface/complex_content_object_support.class.php',
  344. 'ComplexMenuSupport' => '/shared/interface/complex_menu_support.class.php',
  345. 'DelegateComponent' => '/shared/interface/delegate_component.class.php',
  346. 'ForcedVersionSupport' => '/shared/interface/forced_version_support.class.php',
  347. 'Hashable' => '/shared/interface/hashable.class.php',
  348. 'HelperContentObjectSupport' => '/shared/interface/helper_content_object_support.class.php',
  349. 'Includeable' => '/shared/interface/includeable.class.php',
  350. 'NoContextComponent' => '/shared/interface/no_context_component.class.php',
  351. 'UserRegistrationSupport' => '/shared/interface/user_registration_support.class.php',
  352. 'Versionable' => '/shared/interface/versionable.class.php',
  353. 'JavascriptUtilities' => '/shared/javascript/javascript_utilities.class.php',
  354. 'AttachmentViewerLauncher' => '/shared/launcher/attachment_viewer/attachment_viewer_launcher.class.php',
  355. 'ComplexBuilderLauncher' => '/shared/launcher/complex_builder/complex_builder_launcher.class.php',
  356. 'ComplexDisplayPreviewLauncher' => '/shared/launcher/complex_display_preview/complex_display_preview_launcher.class.php',
  357. 'ExternalRepositoryLauncher' => '/shared/launcher/external_repository/external_repository_launcher.class.php',
  358. 'HtmlEditorFileLauncher' => '/shared/launcher/html_editor_file/html_editor_file_launcher.class.php',
  359. 'RepoViewerLauncher' => '/shared/launcher/repo_viewer/repo_viewer_launcher.class.php',
  360. 'VideoConferencingLauncher' => '/shared/launcher/video_conferencing/video_conferencing_launcher.class.php',
  361. 'Mail' => '/shared/mail/mail.class.php',
  362. 'DefaultMail' => '/shared/mail/default/default_mail.class.php',
  363. 'PhpmailerMail' => '/shared/mail/phpmailer/phpmailer_mail.class.php',
  364. 'MimeUtil' => '/shared/mime/mime_util.class.php',
  365. 'PublicationRSS' => '/shared/rss/publication_rss.class.php',
  366. 'RSSEngine' => '/shared/rss/rss_engine.class.php',
  367. 'BasicRSS' => '/shared/rss/builders/basic_rss.class.php',
  368. 'CombinedRSS' => '/shared/rss/builders/combined_rss.class.php',
  369. 'Channel' => '/shared/rss/objects/channel.class.php',
  370. 'CombinedChannel' => '/shared/rss/objects/combined_channel.class.php',
  371. 'RSSStream' => '/shared/rss/objects/rss_stream.class.php',
  372. 'Security' => '/shared/security/security.class.php',
  373. 'Cookie' => '/shared/session/cookie.class.php',
  374. 'Request' => '/shared/session/request.class.php',
  375. 'Session' => '/shared/session/session.class.php',
  376. 'SessionHandler' => '/shared/session/session_handler.class.php',
  377. 'ArrayResultSet' => '/shared/storage/array_result_set.class.php',
  378. 'ConditionTranslator' => '/shared/storage/condition_translator.class.php',
  379. 'ConditionVariableTranslator' => '/shared/storage/condition_variable_translator.class.php',
  380. 'DataManager' => '/shared/storage/data_manager.class.php',
  381. 'DataManagerInterface' => '/shared/storage/data_manager_interface.class.php',
  382. 'DataSourceName' => '/shared/storage/data_source_name.class.php',
  383. 'NestedTreeNode' => '/shared/storage/nested_tree_node.class.php',
  384. 'NewConditionTranslator' => '/shared/storage/new_condition_translator.class.php',
  385. 'ResultSet' => '/shared/storage/result_set.class.php',
  386. 'StorageAliasGenerator' => '/shared/storage/storage_alias_generator.class.php',
  387. 'CompositeDataClass' => '/shared/storage/data_class/composite_data_class.class.php',
  388. 'DataClass' => '/shared/storage/data_class/data_class.class.php',
  389. 'DataClassCache' => '/shared/storage/data_class/data_class_cache.class.php',
  390. 'DataClassNoResultException' => '/shared/storage/data_class/data_class_no_result_exception.class.php',
  391. 'DataClassParameters' => '/shared/storage/data_class/data_class_parameters.class.php',
  392. 'DataClassResultSet' => '/shared/storage/data_class/data_class_result_set.class.php',
  393. 'DataClassCountCache' => '/shared/storage/data_class/cache/count.class.php',
  394. 'DataClassCountGroupedCache' => '/shared/storage/data_class/cache/count_grouped.class.php',
  395. 'DataClassDistinctCache' => '/shared/storage/data_class/cache/distinct.class.php',
  396. 'DataClassResultCache' => '/shared/storage/data_class/cache/result.class.php',
  397. 'DataClassResultSetCache' => '/shared/storage/data_class/cache/result_set.class.php',
  398. 'ManyToManyForeignObjectsParameters' => '/shared/storage/data_class/foreign_objects/parameters/many_to_many.class.php',
  399. 'ManyToOneForeignObjectsParameters' => '/shared/storage/data_class/foreign_objects/parameters/many_to_one.class.php',
  400. 'OneToManyForeignObjectsParameters' => '/shared/storage/data_class/foreign_objects/parameters/one_to_many.class.php',
  401. 'OneToOneForeignObjectsParameters' => '/shared/storage/data_class/foreign_objects/parameters/one_to_one.class.php',
  402. 'DataClassCountParameters' => '/shared/storage/data_class/parameters/count.class.php',
  403. 'DataClassCountDistinctParameters' => '/shared/storage/data_class/parameters/count_distinct.class.php',
  404. 'DataClassCountGroupedParameters' => '/shared/storage/data_class/parameters/count_grouped.class.php',
  405. 'DataClassDistinctParameters' => '/shared/storage/data_class/parameters/distinct.class.php',
  406. 'DataClassPropertyParameters' => '/shared/storage/data_class/parameters/property.class.php',
  407. 'DataClassRetrieveParameters' => '/shared/storage/data_class/parameters/retrieve.class.php',
  408. 'DataClassRetrievesParameters' => '/shared/storage/data_class/parameters/retrieves.class.php',
  409. 'DoctrineConditionTranslator' => '/shared/storage/implementation/doctrine/condition_translator.class.php',
  410. 'DoctrineConditionVariableTranslator' => '/shared/storage/implementation/doctrine/condition_variable_translator.class.php',
  411. 'DoctrineConnection' => '/shared/storage/implementation/doctrine/connection.class.php',
  412. 'DoctrineDatabase' => '/shared/storage/implementation/doctrine/database.class.php',
  413. 'DoctrineDataSourceName' => '/shared/storage/implementation/doctrine/data_source_name.class.php',
  414. 'DoctrineResultSet' => '/shared/storage/implementation/doctrine/result_set.class.php',
  415. 'DoctrineAggregateConditionTranslator' => '/shared/storage/implementation/doctrine/condition/aggregate_condition.class.php',
  416. 'DoctrineAndConditionTranslator' => '/shared/storage/implementation/doctrine/condition/and_condition.class.php',
  417. 'DoctrineEqualityConditionTranslator' => '/shared/storage/implementation/doctrine/condition/equality_condition.class.php',
  418. 'DoctrineInequalityConditionTranslator' => '/shared/storage/implementation/doctrine/condition/inequality_condition.class.php',
  419. 'DoctrineInConditionTranslator' => '/shared/storage/implementation/doctrine/condition/in_condition.class.php',
  420. 'DoctrineNotConditionTranslator' => '/shared/storage/implementation/doctrine/condition/not_condition.class.php',
  421. 'DoctrineOrConditionTranslator' => '/shared/storage/implementation/doctrine/condition/or_condition.class.php',
  422. 'DoctrinePatternMatchConditionTranslator' => '/shared/storage/implementation/doctrine/condition/pattern_match_condition.class.php',
  423. 'DoctrineSubselectConditionTranslator' => '/shared/storage/implementation/doctrine/condition/subselect_condition.class.php',
  424. 'DoctrineFixedPropertyConditionVariableTranslator' => '/shared/storage/implementation/doctrine/condition_variable/fixed_property.class.php',
  425. 'DoctrineOperationConditionVariableTranslator' => '/shared/storage/implementation/doctrine/condition_variable/operation.class.php',
  426. 'DoctrinePropertyConditionVariableTranslator' => '/shared/storage/implementation/doctrine/condition_variable/property.class.php',
  427. 'DoctrineStaticConditionVariableTranslator' => '/shared/storage/implementation/doctrine/condition_variable/static.class.php',
  428. 'Mdb2ConditionTranslator' => '/shared/storage/implementation/mdb2/condition_translator.class.php',
  429. 'Mdb2ConditionVariableTranslator' => '/shared/storage/implementation/mdb2/condition_variable_translator.class.php',
  430. 'Mdb2Connection' => '/shared/storage/implementation/mdb2/connection.class.php',
  431. 'Mdb2Database' => '/shared/storage/implementation/mdb2/database.class.php',
  432. 'Mdb2DataSourceName' => '/shared/storage/implementation/mdb2/data_source_name.class.php',
  433. 'Mdb2ResultSet' => '/shared/storage/implementation/mdb2/result_set.class.php',
  434. 'DatabaseBackup' => '/shared/storage/implementation/mdb2/backup/database_backup.class.php',
  435. 'MysqlBackup' => '/shared/storage/implementation/mdb2/backup/types/mysql_backup.class.php',
  436. 'Mdb2AggregateConditionTranslator' => '/shared/storage/implementation/mdb2/condition/aggregate_condition.class.php',
  437. 'Mdb2AndConditionTranslator' => '/shared/storage/implementation/mdb2/condition/and_condition.class.php',
  438. 'Mdb2EqualityConditionTranslator' => '/shared/storage/implementation/mdb2/condition/equality_condition.class.php',
  439. 'Mdb2InequalityConditionTranslator' => '/shared/storage/implementation/mdb2/condition/inequality_condition.class.php',
  440. 'Mdb2InConditionTranslator' => '/shared/storage/implementation/mdb2/condition/in_condition.class.php',
  441. 'Mdb2NotConditionTranslator' => '/shared/storage/implementation/mdb2/condition/not_condition.class.php',
  442. 'Mdb2OrConditionTranslator' => '/shared/storage/implementation/mdb2/condition/or_condition.class.php',
  443. 'Mdb2PatternMatchConditionTranslator' => '/shared/storage/implementation/mdb2/condition/pattern_match_condition.class.php',
  444. 'Mdb2SubselectConditionTranslator' => '/shared/storage/implementation/mdb2/condition/subselect_condition.class.php',
  445. 'Mdb2FixedPropertyConditionVariableTranslator' => '/shared/storage/implementation/mdb2/condition_variable/fixed_property.class.php',
  446. 'Mdb2OperationConditionVariableTranslator' => '/shared/storage/implementation/mdb2/condition_variable/operation.class.php',
  447. 'Mdb2PropertyConditionVariableTranslator' => '/shared/storage/implementation/mdb2/condition_variable/property.class.php',
  448. 'Mdb2StaticConditionVariableTranslator' => '/shared/storage/implementation/mdb2/condition_variable/static.class.php',
  449. 'SimpleTemplate' => '/shared/string/simple_template.class.php',
  450. 'StringUtilities' => '/shared/string/string_utilities.class.php',
  451. 'CacheData' => '/shared/system_cache/cache_data.class.php',
  452. 'CacheDataTransient' => '/shared/system_cache/cache_data_transient.class.php',
  453. 'CacheSynch' => '/shared/system_cache/cache_synch.class.php',
  454. 'ClientCache' => '/shared/system_cache/client_cache.class.php',
  455. 'ExitAction' => '/shared/system_cache/exit_action.class.php',
  456. 'FileCache' => '/shared/system_cache/file_cache.class.php',
  457. 'ResourceCache' => '/shared/system_cache/resource_cache.class.php',
  458. 'SystemCache' => '/shared/system_cache/system_cache.class.php',
  459. 'Test' => '/shared/test/test.class.php',
  460. 'CheckSourceCodeTest' => '/shared/test/acceptance/check_source_code_test.class.php',
  461. 'DataClassIntegrationTestCase' => '/shared/test/integration/data_class_integration_test_case.class.php',
  462. 'DataClassUnitTestCase' => '/shared/test/unit/data_class_unit_test_case.class.php',
  463. 'DataClassTest' => '/shared/test/unit/storage/data_class_test.class.php',
  464. 'Translation' => '/shared/translation/translation.class.php',
  465. 'application_generator\MyTemplate' => '/shared/util/application_generator/my_template.class.php',
  466. 'application_generator\AutoloaderGenerator' => '/shared/util/application_generator/autoloader_generator/autoloader_generator.class.php',
  467. 'application_generator\ComponentGenerator' => '/shared/util/application_generator/component_generator/component_generator.class.php',
  468. 'application_generator\DataClassGenerator' => '/shared/util/application_generator/data_class_generator/data_class_generator.class.php',
  469. 'application_generator\DataManagerGenerator' => '/shared/util/application_generator/data_manager_generator/data_manager_generator.class.php',
  470. 'application_generator\FormGenerator' => '/shared/util/application_generator/form_generator/form_generator.class.php',
  471. 'application_generator\InstallGenerator' => '/shared/util/application_generator/install_generator/install_generator.class.php',
  472. 'application_generator\ManagerGenerator' => '/shared/util/application_generator/manager_generator/manager_generator.class.php',
  473. 'application_generator\PackageInfoGenerator' => '/shared/util/application_generator/package_info_generator/package_info_generator.class.php',
  474. 'application_generator\RightsGenerator' => '/shared/util/application_generator/rights_generator/rights_generator.class.php',
  475. 'application_generator\SortableTableGenerator' => '/shared/util/application_generator/sortable_table_generator/sortable_table_generator.class.php',
  476. 'content_object_generator\MyTemplate' => '/shared/util/content_object_generator/my_template.class.php',
  477. 'content_object_generator\AdditionalClassGenerator' => '/shared/util/content_object_generator/additional_class_generator/additional_class_generator.class.php',
  478. 'content_object_generator\DataClassGenerator' => '/shared/util/content_object_generator/data_class_generator/data_class_generator.class.php',
  479. 'content_object_generator\FormGenerator' => '/shared/util/content_object_generator/form_generator/form_generator.class.php',
  480. 'content_object_generator\PackageInfoGenerator' => '/shared/util/content_object_generator/package_info_generator/package_info_generator.class.php',
  481. 'data_class_generator\MyTemplate' => '/shared/util/data_class_generator/my_template.class.php',
  482. 'data_class_generator\DataClassGenerator' => '/shared/util/data_class_generator/data_class_generator/data_class_generator.class.php',
  483. 'RssIconGenerator' => '/shared/util/rss_icon_generator/rss_icon_generator.class.php',
  484. 'AutoloaderUtilities' => '/shared/util/various/autoloader_utilities.class.php',
  485. 'CodeUtilities' => '/shared/util/various/code_utilities.class.php',
  486. 'Validator' => '/shared/validator/validator.class.php',
  487. 'Webservice' => '/shared/webservice/webservice.class.php',
  488. 'WebserviceAuthentication' => '/shared/webservice/authentication/webservice_authentication.class.php',
  489. 'ChamiloWebserviceAuthentication' => '/shared/webservice/authentication/chamilo/chamilo_webservice_authentication.class.php',
  490. 'DigestWebserviceAuthentication' => '/shared/webservice/authentication/digest/digest_webservice_authentication.class.php',
  491. 'OauthWebserviceAuthentication' => '/shared/webservice/authentication/oauth/oauth_webservice_authentication.class.php',
  492. 'ChamiloRestServer' => '/shared/webservice/rest/chamilo_rest_server.class.php',
  493. 'NoAuthenticationWebservice' => '/shared/webservice/rest/no_authentication_webservice.class.php',
  494. 'RestMessageRenderer' => '/shared/webservice/rest/rest_message_renderer.class.php',
  495. 'RestServer' => '/shared/webservice/rest/rest_server.class.php',
  496. 'SuccessRestMessage' => '/shared/webservice/rest/success_rest_message.class.php',
  497. 'WebserviceHandler' => '/shared/webservice/rest/webservice_handler.class.php',
  498. 'RestAuthentication' => '/shared/webservice/rest/client/rest_authentication.class.php',
  499. 'RestData' => '/shared/webservice/rest/client/rest_data.class.php',
  500. 'CurlBasicRestAuthentication' => '/shared/webservice/rest/client/authentication/curl/curl_basic_rest_authentication.class.php',
  501. 'CurlDigestRestAuthentication' => '/shared/webservice/rest/client/authentication/curl/curl_digest_rest_authentication.class.php',
  502. 'CurlRestClient' => '/shared/webservice/rest/client/client/curl_rest_client.class.php',
  503. 'FormRestData' => '/shared/webservice/rest/client/data/form_data.class.php',
  504. 'PlainRestData' => '/shared/webservice/rest/client/data/plain_data.class.php',
  505. 'UrlRestData' => '/shared/webservice/rest/client/data/url_data.class.php',
  506. 'HtmlRestResult' => '/shared/webservice/rest/client/result/html_rest_result.class.php',
  507. 'JsonRestResult' => '/shared/webservice/rest/client/result/json_rest_result.class.php',
  508. 'PlainRestResult' => '/shared/webservice/rest/client/result/plain_rest_result.class.php',
  509. 'XmlRestResult' => '/shared/webservice/rest/client/result/xml_rest_result.class.php',
  510. 'PearRestClient' => '/shared/webservice/rest/client/type/pear_rest_client.class.php',
  511. 'CreateObjectWebserviceHandler' => '/shared/webservice/rest/handler/create_object_webservice_handler.class.php',
  512. 'DeleteObjectWebserviceHandler' => '/shared/webservice/rest/handler/delete_object_webservice_handler.class.php',
  513. 'GetObjectListWebserviceHandler' => '/shared/webservice/rest/handler/get_object_list_webservice_handler.class.php',
  514. 'GetObjectWebserviceHandler' => '/shared/webservice/rest/handler/get_object_webservice_handler.class.php',
  515. 'UpdateObjectWebserviceHandler' => '/shared/webservice/rest/handler/update_object_webservice_handler.class.php',
  516. 'HtmlRestMessageRe…

Large files files are truncated, but you can click here to view the full file