I try to add link to us from Board3 Portal to the simple portal
I have this in the portal.php
Code: Select all
//Begin link to us
//doing the easy way ;)
$u_link = generate_board_url();
// Assign specific vars
$template->assign_vars(array(
'S_DISPLAY_LINK_US' => true,
'LINK_US_TXT' => sprintf($user->lang['LINK_US_TXT'], $config['sitename']),
'U_LINK_US' => '<a href="' . $u_link . '" ' . (($config['site_desc']) ? 'title="' . $config['site_desc'] . '"' : '' ) . '>' . (($config['sitename']) ? $config['sitename'] : $u_link ) . '</a>',
));
//End link to us
Code: Select all
<div class="forabg">
<div class="inner"><span class="corners-top"><span></span></span>
<ul class="topiclist">
<li class="header">
<dl class="icon">
<dt>{L_LINK_US}</dt>
</dl>
</li>
</ul>
<div class="sidemenu_custom">
<ul class="topiclist forums">
<li>
{LINK_US_TXT}<br /><br />
<input type="text" tabindex="9" size="28" value="{U_LINK_US}" class="inputbox autowidth" onclick="this.focus();this.select();" /><br />
</div></li>
</ul>
</div>
<span class="corners-bottom"><span></span></span></div>
</div>
Code: Select all
// links
$lang = array_merge($lang, array(
'LINK_US' => 'Link to us',
'LINK_US_TXT' => 'Please feel free to link to <strong>%s</strong>. Use the following HTML:',
));
Code: Select all
<?php
if (!defined('IN_PHPBB') || !defined('IN_PORTAL'))
{
exit;
}
//doing the easy way ;)
$u_link = generate_board_url();
// Assign specific vars
$template->assign_vars(array(
'S_DISPLAY_LINK_US' => true,
'LINK_US_TXT' => sprintf($user->lang['LINK_US_TXT'], $config['sitename']),
'U_LINK_US' => '<a href="' . $u_link . '" ' . (($config['site_desc']) ? 'title="' . $config['site_desc'] . '"' : '' ) . '>' . (($config['sitename']) ? $config['sitename'] : $u_link ) . '</a>',
));
?>
Code: Select all
if (!defined('IN_PHPBB') || !defined('IN_PORTAL'))
{
exit;
}
to so far I have this
I hope that someone can help me whit this
Already thanks for the help
Greets Terr0r