ConLite/conlite/plugins/content_allocation/includes/config.autoloader.php

30 Zeilen
954 B
PHP

<?php
/**
* File:
* config.autoloader.php
*
* @package Plugins
* @subpackage Newsletter
* @version $Rev$
* @since 2.0
* @author Ortwin Pinke <o.pinke@conlite.org>
* @copyright 2015 CL-Team
* @link http://www.conlite.org
*
* $Id$
*/
if(!defined('CON_FRAMEWORK')) {
die('Illegal call');
}
$sAutoloadClassPath = 'conlite/plugins/content_allocation/classes/';
return array(
'pApiContentAllocation' => $sAutoloadClassPath.'class.content_allocation.php',
'pApiContentAllocationArticle' => $sAutoloadClassPath.'class.content_allocation_article.php',
'pApiContentAllocationComplexList' => $sAutoloadClassPath.'class.content_allocation_complexlist.php',
'pApiContentAllocationSelectBox' => $sAutoloadClassPath.'class.content_allocation_selectbox.php',
'pApiTree' => $sAutoloadClassPath.'class.content_allocation_tree.php',
'pApiContentAllocationTreeView' => $sAutoloadClassPath.'class.content_allocation_treeview.php'
);
?>