This repository has been archived by the owner on Feb 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathautoload.php
54 lines (42 loc) · 3.35 KB
/
autoload.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/**
* Joomlatools Platform - http://developer.joomlatools.org/platform
*
* @copyright Copyright (C) 2015 Johan Janssens and Timble CVBA. (http://www.timble.net)
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html>
* @link https://github.com/joomlatools/joomlatools-platform for the canonical source repository
*/
if (!defined('JOOMLATOOLS_PLATFORM')) {
return;
}
//Provide a specialised version of JHelperTags found in /lib/libraries/cms/helper/tags.php
JLoader::register('JHelperTags' , JPATH_ADMINISTRATOR . '/components/com_tags/helpers/tags.php');
JLoader::registerAlias('TagsHelperTags' , 'JHelperTags');
JLoader::register('TagsTableObserverTags' , JPATH_ADMINISTRATOR . '/components/com_tags/tables/observer/history.php');
JLoader::registerAlias('JTableObserverTags', 'TagsTableObserverTags');
JLoader::register('ContenthistoryHelperHistory' , JPATH_ADMINISTRATOR . '/components/com_contenthistory/helpers/history.php');
JLoader::register('ContenthistoryTableObserverHistory', JPATH_ADMINISTRATOR . '/components/com_contenthistory/tables/observer/history.php');
JLoader::registerAlias('JHelperContenthistory' , 'ContenthistoryHelperHistory');
JLoader::registerAlias('JTableObserverContenthistory' , 'ContenthistoryTableObserverHistory');
JLoader::register('JFormFieldTag' , JPATH_ADMINISTRATOR . '/components/com_tags/models/fields/tag.php');
JLoader::register('JFormFieldContenthistory', JPATH_ADMINISTRATOR . '/components/com_contenthistory/models/fields/history.php');
JLoader::register('JFormFieldContenttype' , JPATH_ADMINISTRATOR . '/components/com_content/models/fields/contenttype.php');
JLoader::register('JFormFieldOrdering' , JPATH_ADMINISTRATOR . '/components/com_content/models/fields/ordering.php');
JLoader::register('JFormFieldModal_Article' , JPATH_ADMINISTRATOR . '/components/com_content/models/fields/modal/article.php');
JLoader::register('ContentTableContent' , JPATH_ADMINISTRATOR . '/components/com_content/tables/content.php');
JLoader::register('ContentTableCore' , JPATH_ADMINISTRATOR . '/components/com_content/tables/core.php');
JLoader::register('ContentTableTypes' , JPATH_ADMINISTRATOR . '/components/com_content/tables/types.php');
JLoader::registerAlias('JTableContent' , 'ContentTableContent');
JLoader::registerAlias('JTableCorecontent', 'ContentTableCore');
JLoader::registerAlias('JTableContenttype', 'ContentTableTypes');
JLoader::register('ContentTableUcmBase' , JPATH_ADMINISTRATOR . '/components/com_content/tables/ucm/base.php');
JLoader::register('ContentTableUcmContent' , JPATH_ADMINISTRATOR . '/components/com_content/tables/ucm/content.php');
JLoader::register('ContentTableUcmType' , JPATH_ADMINISTRATOR . '/components/com_content/tables/ucm/type.php');
JLoader::register('ContentTableUcm' , JPATH_ADMINISTRATOR . '/components/com_content/tables/ucm/ucm.php');
JLoader::registerAlias('JUcmBase' , 'ContentTableUcmBase');
JLoader::registerAlias('JUcmContent', 'ContentTableUcmContent');
JLoader::registerAlias('JUcmType' , 'ContentTableUcmType');
JLoader::registerAlias('JUcm' , 'ContentTableUcm');
JHtml::addIncludePath(JPATH_ADMINISTRATOR . '/components/com_content/helpers/html');
JHtml::addIncludePath(JPATH_ADMINISTRATOR . '/components/com_contenthistory/helpers/html');
JHtml::addIncludePath(JPATH_ADMINISTRATOR . '/components/com_tags/helpers/html');