Page MenuHomeIn-Portal Phabricator

fck_config.php
No OneTemporary

File Metadata

Created
Tue, Sep 30, 2:03 AM

fck_config.php

<?php
/**
* @version $Id: fck_config.php 16388 2016-08-11 08:16:43Z alex $
* @package In-Portal
* @copyright Copyright (C) 1997 - 2009 Intechnic. All rights reserved.
* @license GNU/GPL
* In-Portal is Open Source software.
* This means that this software may have been modified pursuant
* the GNU General Public License, and as distributed it includes
* or is derivative of works licensed under the GNU General Public License
* or other free or open source software licenses.
* See http://www.in-portal.org/license for copyright notices and details.
*/
defined('FULL_PATH') or die('restricted access!');
$config = Array (
'Prefix' => 'fck',
'QueryString' => Array (
1 => 'id',
2 => 'event',
),
'ItemClass' => Array ('class' => 'kDBItem', 'file' => '', 'build_event' => 'OnItemBuild'),
'ListClass' => Array ('class' => 'kDBList', 'file' => '', 'build_event' => 'OnListBuild'),
'EventHandlerClass' => Array ('class' => 'FckEventHandler', 'file' => 'fck_eh.php', 'build_event' => 'OnBuild'),
'TagProcessorClass' => Array ('class' => 'FckTagProcessor', 'file' => 'fck_tp.php', 'build_event' => 'OnBuild'),
'AutoLoad' => true,
'IDField' => '',
'ParentTableKey' => '',
'ForeignKey' => '',
'AutoDelete' => false,
'AutoClone' => false,
);

Event Timeline