Page MenuHomeIn-Portal Phabricator

priorites_config.php
No OneTemporary

File Metadata

Created
Fri, Feb 7, 5:30 PM

priorites_config.php

<?php
/**
* @version $Id: priorites_config.php 15659 2013-01-02 17:25:37Z alex $
* @package In-Bulletin
* @copyright Copyright (C) 1997 - 2011 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' => 'priority',
'EventHandlerClass' => Array ('class' => 'PriorityEventHandler', 'file' => 'priority_eh.php', 'build_event' => 'OnBuild'),
'QueryString' => Array (
1 => 'prefix',
2 => 'event',
),
'Hooks' => Array (
Array (
'Mode' => hAFTER,
'Conditional' => false,
'HookToPrefix' => 'adm',
'HookToSpecial' => '*',
'HookToEvent' => Array ('OnBeforeShutdown'),
'DoPrefix' => 'priority',
'DoSpecial' => '*',
'DoEvent' => 'OnBeforeShutdown',
'Conditional' => false,
),
),
'PermSection' => Array ('main' => 'custom'),
'ProcessPrefixes' => Array (
'c', 'st', 'promo-block',
),
);

Event Timeline