44 lines
787 B
PHP
44 lines
787 B
PHP
<?php
|
|
|
|
/**
|
|
*
|
|
* @package - Board3portal
|
|
* @version $Id$
|
|
* @copyright (c) kevin / saint ( http://www.board3.de/ ), (c) Ice, (c) nickvergessen ( http://mods.flying-bits.org/ ), (c) redbull254 ( http://www.digitalfotografie-foren.de )
|
|
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|
*
|
|
*/
|
|
|
|
if (!defined('IN_PHPBB'))
|
|
{
|
|
exit;
|
|
}
|
|
|
|
if (!defined('IN_PORTAL'))
|
|
{
|
|
exit;
|
|
}
|
|
|
|
if ($portal_config['portal_pay_acc'])
|
|
{
|
|
if ($portal_config['portal_pay_c_block'])
|
|
{
|
|
$template->assign_vars(array(
|
|
'S_DISPLAY_PAY_C' => true,
|
|
));
|
|
}
|
|
|
|
if ($portal_config['portal_pay_s_block'])
|
|
{
|
|
$template->assign_vars(array(
|
|
'S_DISPLAY_PAY_S' => true,
|
|
));
|
|
}
|
|
|
|
// Assign specific vars
|
|
$template->assign_vars(array(
|
|
'PAY_ACC' => $portal_config['portal_pay_acc'],
|
|
));
|
|
}
|
|
|
|
?>
|