1
fishspon
How is the "xoops.org/general/" section done?
  • 2004/1/27 20:42

  • fishspon

  • Not too shy to talk

  • Posts: 164

  • Since: 2003/11/23


How is the "xoops.org/general/" section done? Example here:

https://xoops.org/general/index.php

is there a module for it? or is it a custom block linked to other custom blocks?

Thanks in advance

2
KubaZ
Re: How is the "xoops.org/general/" section done?
  • 2004/1/27 20:59

  • KubaZ

  • Just popping in

  • Posts: 37

  • Since: 2002/10/9


I think it is a new module. Someone has written it.
It has a simple file's structure like: index.php features.php developers.php. itd...

and I think.. it is still changing... or need upgrade (e.g. developers)


More information..I think.. will give you administrators of this service..

baCio
KubaZ

3
Herko
Re: How is the "xoops.org/general/" section done?
  • 2004/1/27 21:32

  • Herko

  • XOOPS is my life!

  • Posts: 4238

  • Since: 2002/2/4 1


No module. Just very basic:

make a folder (like our general/), and put footer.php and header.ph in that.

Make a .php file with the html content like this:

<?php include 'header.php'; ?> PUT YOUR CONTENT HERE BUT DO NOT INCLUDE <HTML><HEAD><BODY> etc. TAGS, JUST HTML. <?php include 'footer.php'; ?>


Herko

4
dheltzel
Re: How is the "xoops.org/general/" section done?
  • 2004/1/27 23:46

  • dheltzel

  • Not too shy to talk

  • Posts: 164

  • Since: 2003/1/8 1


What makes it show up "module-like" in the menu on the left?
Is there a special place to create the folder?

5
Mithrandir
Re: How is the "xoops.org/general/" section done?

I-menu or multi-menu or something similar.
Basically it's just a custom block.

6
fishspon
Re: How is the "xoops.org/general/" section done?
  • 2004/1/28 1:00

  • fishspon

  • Not too shy to talk

  • Posts: 164

  • Since: 2003/11/23


are I-menu and multi-menu actual proper XOOPS modules?

Also, what do i put in header.php and footer.php ? Just plain HTML code?

How do i make sure the left blocks and right blocks are included with each page in my "general" folder?