collapse

* Simple Portal Archived Forum

This is an Archive Forum.

The content in this forum may be out-of-date or have been superseded by newer information, and links in forum pages to other sites may not work.
This forum contains archives for future reference.

Visit our thread at Simple Machines Forum for current support.

SMF 2.1 users: EhPortal is a ported version of Simple Portal specifically designed for the SMF 2.1 branch.
Please visit web-develop.ca to download EhPortal and for its support.

* User Info

 
 
Welcome, Guest. Please login or register.

* Who's Online

  • Dot Guests: 396
  • Dot Hidden: 0
  • Dot Users: 0

There aren't any users online.

* Shoutbox

Refresh History
  • Shoutbox is not for support!
  • {OCS}MasterSeal: Yup, Still adore SP
    April 21, 2019, 07:08:06 PM
  • {OCS}MasterSeal: STILL love SP :)
    November 24, 2018, 05:05:50 AM
  • ♦ Ninja ZX-10RR ♦: <3 aegersz
    September 13, 2018, 03:36:09 PM
  • aegersz: I STILL <3 LOVE SimplePortal
    September 13, 2018, 07:11:39 AM
  • aegersz: o LOVE you guys - Simple Portal rocks !
    May 09, 2018, 05:18:59 AM
  • Chen Zhen: our apologies for the site being down.. please read server issues topic
    March 22, 2018, 05:32:38 AM
  • {OCS}MasterSeal: LOL PLEASE forget I just posted that. I found the answer in my own dang post back in 2015. lol sorry!
    July 04, 2017, 10:47:55 PM
  • {OCS}MasterSeal: I know this SB isnt' for support, but I just have a general question. Who would I contact to find out where SP stores its block info? Is it DB driven or files? I searched the site but came up with nothing. probably my fault any insight is appreciated.
    July 04, 2017, 10:43:36 PM
  • ♦ Ninja ZX-10RR ♦: Excuse me but what does Simpleportal have to deal with that?
    February 05, 2017, 08:21:14 PM
  • WhiteEagle: of course IMHO that site appears to be dead :(
    February 04, 2017, 01:08:05 PM
  • WhiteEagle: If I can get that, then I'll use it for that site...
    February 04, 2017, 01:07:35 PM
  • WhiteEagle: decided to not use SMF for any projects, unless I can get a copy of the premium version of the fanfiction archive plugin
    February 04, 2017, 01:06:54 PM
  • expertdecisions: cloudflare
    January 28, 2017, 08:01:47 AM
  • aegersz: SM release 2.0.13 !
    January 12, 2017, 06:00:13 AM
  • raffo: Tks Emanuele, even if I didn't understand the fix :D
    November 07, 2016, 02:01:20 AM
  • emanuele: [link]
    November 01, 2016, 12:43:50 PM
  • emanuele: raffo: the English support board is a good place. ;)
    November 01, 2016, 12:43:38 PM
  • raffo: Where can I find the fix for the shoutbox?
    November 01, 2016, 05:06:09 AM
  • {OCS}MasterSeal: To the SP team, I make a point to come here and thank you as much as possible for your work.  so again, THANK YOU!
    October 28, 2016, 10:38:05 AM
  • emanuele: That's indeed funny, the limit is present only in the patch and not the full install.
    October 22, 2016, 06:14:58 PM

* Recent Posts

Adding Forums Button to Nav bar by jirapon
[August 01, 2019, 09:07:12 AM]


Re: Board Icons by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 04:03:41 PM]


MOVED: Czech translation???? by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 03:04:51 PM]


Board Icons by jirapon
[July 30, 2019, 07:28:44 AM]


Re: Thankyou Simpleportal, by ♦ Ninja ZX-10RR ♦
[July 29, 2019, 09:41:29 AM]

Installation errors? Mod incompatibilities? Upgrade problems? Make your way over to the Install and Upgrade Support board for all your solutions!

Author Topic: Linking to an custom Index.html  (Read 7516 times)

0 Members and 1 Guest are viewing this topic.

Offline prawn185

  • Newbie
  • Posts: 3
  • SMF Version: 2.0.10
  • SP Version: 2.3.6
Linking to an custom Index.html
« on: May 07, 2015, 04:37:24 AM »
I want to bebale to link the block where you see the recent post from 'announcements' to my index.html with I made

Offline ♦ Ninja ZX-10RR ♦

  • Spammer Hammer
  • Support
  • *
  • Posts: 1193
  • Gender: Male
  • Sniper Legends
    • Virtual Interactive Games Entertainment™
  • SMF Version: 2.0.13
  • SP Version: 2.3.6
  • Elkarte Version: 1.0.6
Re: Linking to an custom Index.html
« Reply #1 on: May 07, 2015, 08:38:03 AM »
Hi! Welcome to SimplePortal.
The code you have to call into your html page is this:
Code: [Select]
<?php
function sp_recent($parameters$id$return_parameters false)
{
global $txt$scripturl$settings$context$color_profile;

$block_parameters = array(
'boards' => 'boards',
'limit' => 'int',
'type' => 'select',
'display' => 'select',
);

if ($return_parameters)
return $block_parameters;

$boards = !empty($parameters['boards']) ? explode('|'$parameters['boards']) : null;
$limit = !empty($parameters['limit']) ? (int) $parameters['limit'] : 5;
$type 'ssi_recent' . (empty($parameters['type']) ? 'Posts' 'Topics');
$display = empty($parameters['display']) ? 'compact' 'full';

$items $type($limitnull$boards'array');

if (empty($items))
{
echo '
'
$txt['error_sp_no_posts_found'];
return;
}
else
$items[count($items) - 1]['is_last'] = true;

$colorids = array();
foreach ($items as $item)
$colorids[] = $item['poster']['id'];

if (!empty($colorids) && sp_loadColors($colorids) !== false)
{
foreach ($items as $k => $p)
{
if (!empty($color_profile[$p['poster']['id']]['link']))
$items[$k]['poster']['link'] = $color_profile[$p['poster']['id']]['link'];
}
}

if ($display == 'compact')
{
foreach ($items as $key => $item)
echo '
<a href="'
$item['href'], '">'$item['subject'], '</a> <span class="smalltext">'$txt['by'], ' '$item['poster']['link'], $item['new'] ? '' ' <a href="' $scripturl '?topic=' $item['topic'] . '.msg' $item['new_from'] . ';topicseen#new" rel="nofollow"><img src="' $settings['lang_images_url'] . '/new.gif" alt="' $txt['new'] . '" border="0" /></a>''<br />['$item['time'], ']</span><br />', empty($item['is_last']) ? '<hr />' '';
}
elseif ($display == 'full')
{
echo '
<table class="sp_fullwidth">'
;

foreach ($items as $item)
echo '
<tr>
<td class="sp_recent_icon sp_center">
'
sp_embed_image(empty($parameters['type']) ? 'post' 'topic'), '
</td>
<td class="sp_recent_subject">
<a href="'
$item['href'], '">'$item['subject'], '</a>
'
$item['new'] ? '' '<a href="' $scripturl '?topic=' $item['topic'] . '.msg' $item['new_from'] . ';topicseen#new"><img src="' $settings['images_url'] . '/' $context['user']['language'] . '/new.gif" alt="' $txt['new'] . '" border="0" /></a>''<br />['$item['board']['link'], ']
</td>
<td class="sp_recent_info sp_right">
'
$item['poster']['link'], '<br />'$item['time'], '
</td>
</tr>'
;

echo '
</table>'
;
}
}
?>

At least if I understood your question correctly, but I am not completely sure about it, it's not very clear.

Regards
Have you tried SimplePortal Documentation before asking? ;)
F.A.Q.  English Support  |  Blocks Support
Fancy Feature idea ?!  |  Blocks Requests
Themes & Graphics

? My job! ?No PMs for support unless it's a paid request. Thank you! :)#OpIsis

Offline prawn185

  • Newbie
  • Posts: 3
  • SMF Version: 2.0.10
  • SP Version: 2.3.6
Re: Linking to an custom Index.html
« Reply #2 on: May 07, 2015, 09:46:21 AM »
Ok thanks ill give it a go and get back to you :)

Offline ♦ Ninja ZX-10RR ♦

  • Spammer Hammer
  • Support
  • *
  • Posts: 1193
  • Gender: Male
  • Sniper Legends
    • Virtual Interactive Games Entertainment™
  • SMF Version: 2.0.13
  • SP Version: 2.3.6
  • Elkarte Version: 1.0.6
Re: Linking to an custom Index.html
« Reply #3 on: May 07, 2015, 11:24:27 AM »
Sure! Let me know :)
Have you tried SimplePortal Documentation before asking? ;)
F.A.Q.  English Support  |  Blocks Support
Fancy Feature idea ?!  |  Blocks Requests
Themes & Graphics

? My job! ?No PMs for support unless it's a paid request. Thank you! :)#OpIsis

Offline prawn185

  • Newbie
  • Posts: 3
  • SMF Version: 2.0.10
  • SP Version: 2.3.6
Re: Linking to an custom Index.html
« Reply #4 on: May 07, 2015, 09:58:17 PM »
I cant seem to get it to work:
Code: [Select]
<!doctype html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Army Storm Gaming</title>
    <link rel="stylesheet" href="styles.css" type="text/css" />
</head>
<body>
<div id="container">
    <header>
<img class="header-image" src="http://i1.ytimg.com/vi/m2Z1ftAqCZ8/maxresdefault.jpg" alt="Header" />
    </header>
    <nav>
    <ul>
        <li class="start selected"><a href="index.php">Home</a></li>
<li><a href="about.html">About us!</a></li>
            <li><a href="application.html">Want to join Cops/medics?</a></li>
            <li><a href="donate.html">Donate Here!</a></li>
            <li><a href="forum/index.php">Forums</a></li>
        </ul>
    </nav>


    <div id="body">

<section id="content">

<?php
function sp_recent($parameters$id$return_parameters false)
{
global $txt$scripturl$settings$context$color_profile;

$block_parameters = array(
'boards' => 'boards',
'limit' => 'int',
'type' => 'select',
'display' => 'select',
);

if ($return_parameters)
return $block_parameters;

$boards = !empty($parameters['boards']) ? explode('|'$parameters['boards']) : null;
$limit = !empty($parameters['limit']) ? (int) $parameters['limit'] : 5;
$type 'ssi_recent' . (empty($parameters['type']) ? 'Posts' 'Topics');
$display = empty($parameters['display']) ? 'compact' 'full';

$items $type($limitnull$boards'array');

if (empty($items))
{
echo '
'
$txt['error_sp_no_posts_found'];
return;
}
else
$items[count($items) - 1]['is_last'] = true;

$colorids = array();
foreach ($items as $item)
$colorids[] = $item['poster']['id'];

if (!empty($colorids) && sp_loadColors($colorids) !== false)
{
foreach ($items as $k => $p)
{
if (!empty($color_profile[$p['poster']['id']]['link']))
$items[$k]['poster']['link'] = $color_profile[$p['poster']['id']]['link'];
}
}

if ($display == 'compact')
{
foreach ($items as $key => $item)
echo '
<a href="'
$item['href'], '">'$item['subject'], '</a> <span class="smalltext">'$txt['by'], ' '$item['poster']['link'], $item['new'] ? '' ' <a href="' $scripturl '?topic=' $item['topic'] . '.msg' $item['new_from'] . ';topicseen#new" rel="nofollow"><img src="' $settings['lang_images_url'] . '/new.gif" alt="' $txt['new'] . '" border="0" /></a>''<br />['$item['time'], ']</span><br />', empty($item['is_last']) ? '<hr />' '';
}
elseif ($display == 'full')
{
echo '
<table class="sp_fullwidth">'
;

foreach ($items as $item)
echo '
<tr>
<td class="sp_recent_icon sp_center">
'
sp_embed_image(empty($parameters['type']) ? 'post' 'topic'), '
</td>
<td class="sp_recent_subject">
<a href="'
$item['href'], '">'$item['subject'], '</a>
'
$item['new'] ? '' '<a href="' $scripturl '?topic=' $item['topic'] . '.msg' $item['new_from'] . ';topicseen#new"><img src="' $settings['images_url'] . '/' $context['user']['language'] . '/new.gif" alt="' $txt['new'] . '" border="0" /></a>''<br />['$item['board']['link'], ']
</td>
<td class="sp_recent_info sp_right">
'
$item['poster']['link'], '<br />'$item['time'], '
</td>
</tr>'
;

echo '
</table>'
;
}
}
?>


        </section>
       
        <aside class="sidebar">

            <ul>
               <li>
                    <h4>Our servers and IPs</h4>
                    </div><div class="tab-pane" id="most_wanted">
    <ul class="thumbnails">
    <li class="span3">
        <div class="thumbnail">
            <p class="caption-small">Arma 3 Altis Life: 85.236.100.85:19607</p></a>
        </div>
    </li>
        <li class="span3">
        <div class="thumbnail">
            <p class="caption-small">Rust</p></a>
        </div>
    </li>
        <li class="span3">
        <div class="thumbnail">
            <p class="caption-small">Teamspeak</p></a>
        </div>
    </li>
        <li class="span3">
        <div class="thumbnail">
            <p class="caption-small">NULL</p></a>
        </div>
    </li>
    </ul>

<!-- Footer -->
        </aside>
    <div class="clear"></div>
    </div>
    <footer>
        <div class="footer-content">
            <ul>
            <li><h4>Quick links</h4></li>
<li><a href="index.php">Home</a></li>
                <li><a href="forum/index.php">Forums</a></li>
                <li><a href="apply.html">Want to be Police?</a></li>
                <li><a href="apply.html">Want to be Medic?</a></li>
            </ul>
           
           
            <div class="clear"></div>
        </div>
        <div class="footer-bottom">
            <p>&copy; 2015-2016 Shaun Moore<p>
         </div>
    </footer>
<!-- End of Footer -->
</div>
</body>
</html>

Offline ♦ Ninja ZX-10RR ♦

  • Spammer Hammer
  • Support
  • *
  • Posts: 1193
  • Gender: Male
  • Sniper Legends
    • Virtual Interactive Games Entertainment™
  • SMF Version: 2.0.13
  • SP Version: 2.3.6
  • Elkarte Version: 1.0.6
Re: Linking to an custom Index.html
« Reply #5 on: June 22, 2015, 08:29:07 AM »
Not sure why but it never notified me of your reply :/ Did you set the block to be HTML and not PHP? Because you have php inside html.
Have you tried SimplePortal Documentation before asking? ;)
F.A.Q.  English Support  |  Blocks Support
Fancy Feature idea ?!  |  Blocks Requests
Themes & Graphics

? My job! ?No PMs for support unless it's a paid request. Thank you! :)#OpIsis