waar moet ik m'n text zetten ?
dan wil ik graag Lees meer
en een VOTE KNOP (dat ik zelf een poll kan maken niet die van een topic)
en dat ik zelf het nieuws kan typen

Code: Selecteer alles
<?php
/***************************************************************************
* portal.php
* -------------------
* begin : Tuesday, August 13, 2002
* copyright : (C) 2002 Smartor
* email : smartor_xp@hotmail.com
*
* $Id: portal.php,v 2.1.7 2003/01/30, 17:05:58 Smartor Exp $
*
***************************************************************************/
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/
/***************************************************************************
*
* Some code in this file I borrowed from the original index.php, Welcome
* Avatar MOD and others...
*
***************************************************************************/
//
// Set configuration for ezPortal
//
// Welcome Text: note that we are in PHP file, so use \' instead of ' and use \\ instead of \ (HTML enabled)
$CFG['welcome_text'] = 'Welkom op <b>Virtualgamer</b><br /><br />Kijk gerust even rond,<br /><br />Veel plezier';
// Number of news on portal
$CFG['number_of_news'] = '5';
// Length of news
$CFG['news_length'] = '200';
// News Forum ID: separate by comma for multi-forums, eg. '1,2,5'
$CFG['news_forum'] = '1';
// Poll Forum ID: separate by comma for multi-forums, eg. '3,8,14'// Number of Recent Topics (not Forum ID)
$CFG['number_recent_topics'] = '10';
// Exceptional Forums for Recent Topics, eg. '2,4,10' (note: my Recent Topics script has its own permission checking, so you can leave this variable blank)
$CFG['exceptional_forums'] = '';
$CFG['poll_forum'] = '1';
//
// END configuration
Code: Selecteer alles
//
// Set configuration for ezPortal
//
// Welcome Text: note that we are in PHP file, so use \' instead of ' and use \\ instead of \ (HTML enabled)
$CFG['welcome_text'] = 'Welkom op <b>Virtualgamer</b><br /><br />Kijk gerust even rond,<br /><br />Veel plezier';
// Number of news on portal
$CFG['number_of_news'] = '5';
// Length of news
$CFG['news_length'] = '200';
// News Forum ID: separate by comma for multi-forums, eg. '1,2,5'
$CFG['news_forum'] = '1';
// Poll Forum ID: separate by comma for multi-forums, eg. '3,8,14'// Number of Recent Topics (not Forum ID)
$CFG['number_recent_topics'] = '10';
// Exceptional Forums for Recent Topics, eg. '2,4,10' (note: my Recent Topics script has its own permission checking, so you can leave this variable blank)
$CFG['exceptional_forums'] = '';
$CFG['poll_forum'] = '1';
//
// END configuration
Code: Selecteer alles
//
// Set configuration for ezPortal
//
// Welkomstekst, let op dat we in PHP bezig zijn. Dus gebruik \' ipv ' en \\ ipv \, html aan
$CFG['welcome_text'] = 'Welkom op <b>Virtualgamer</b><br /><br />Kijk gerust even rond,<br /><br />Veel plezier';
// Aantal nieuwsberichten op portal
$CFG['number_of_news'] = '5';
// Lengte van het nieuwsbericht
$CFG['news_length'] = '200';
// Nieuws forum ID: Gebruik komma voor meerdere fora: '1,2,5'.
$CFG['news_forum'] = '1';
// Aantal recente topics
$CFG['number_recent_topics'] = '10';
// Forums waar geen berichten voor recente topics van daan komen. Zit permissie systeem in, dus kan ook leeg laten.
$CFG['exceptional_forums'] = '';
// Poll Forum ID: Gebruik komma voor meerdere fora: '1,2,5'.
$CFG['poll_forum'] = '1';
//
// END configuration