Page MenuHomeIn-Portal Phabricator

general_config.php
No OneTemporary

File Metadata

Created
Wed, Sep 24, 8:58 AM

general_config.php

<?php
/**
* @version $Id: general_config.php 15698 2013-02-19 11:33:17Z 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 = new kUnitConfig('m', null, false);
$config->setEventHandlerClass(Array ('class' => 'kEventHandler', 'file' => '', 'build_event' => 'OnBuild'));
//$config->setTagProcessorClass(Array ('class' => 'kMainTagProcessor', 'file' => '', 'build_event' => 'OnBuild'));
$config->setQueryString(Array (
1 => 'cat_id',
2 => 'cat_page',
3 => 'lang',
4 => 'theme',
5 => 'opener',
6 => 'wid',
));
$config->setTitleField('CachedNavbar');
$config->setTitlePhrase('la_Text_Category');
$config->setCatalogTabIcon('icon16_section.png');
$config->setItemType(1);
$config->setTableName(TABLE_PREFIX . 'Categories');
$config->setCatalogItem(true);
$config->setPortalStyleEnv(true);
$config->setRewritePriority(100);
$config->setRewriteListener('c_EventHandler:CategoryRewriteListener');
$config->setPermTabText('In-Portal');
$config->setPermSection(Array ('search' => 'in-portal:configuration_search', 'custom' => 'in-portal:configuration_custom'));

Event Timeline