Static Pages

All new MODs released in our MOD Database will be announced in here. All support for released MODs needs to take place in the Customisations Database.
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

NOTICE: This forum is only for the announcement of new releases and/or updates of MODs. Any MOD support should be obtained through the Customisations Database in the support area designated for each MOD.

A direct link to support for each MOD is in the first post of the respective topic.
Locked
Extensions Robot
Extensions Robot
Extensions Robot
Posts: 29220
Joined: Sat Aug 16, 2003 7:36 am

Static Pages

Post by Extensions Robot »

Modification name: Static Pages
Author: ameeck
Modification description: This MOD adds a module to the ACP through which you can add static pages on the forum.
Modification version: 1.0.3
Tested on phpBB version: 3.0.5

Download file: static_pages_103.zip
File size: 91.99 KiB

Modification overview page: View

The phpBB Team is not responsible nor required to provide support for this modification. By installing this MOD, you acknowledge that the phpBB Support Team or phpBB Extension Customisations Team may not be able to provide support.

-->Modification support<--
Last edited by Extensions Robot on Mon Sep 19, 2022 7:33 pm, edited 11 times in total.
(this is a non-active account manager for the phpBB Extension Customisations Team)
User avatar
DavidIQ
Customisations Team Leader
Customisations Team Leader
Posts: 18316
Joined: Thu Jan 06, 2005 1:30 pm
Location: Fishkill, NY
Name: David Colón
Contact:

Static Pages

Post by DavidIQ »

Modification validated/released

Notes:
Apply to become a Jr. Extension Validator
My extensions | In need of phpBB services? | Was I helpful today?
No unsolicited PMs unless you're planning on asking for paid help.
ameeck
Former Team Member
Posts: 6559
Joined: Mon Mar 21, 2005 6:57 pm

Static Pages

Post by ameeck »

Feature overview
  • BBCode support, w/ Custom BBCodes - HTML cannot be used in this MOD.
  • DIY Instructions for SEO-friendly URLs
  • Hiding pages from unregistered users
  • Easy page management in the ACP
  • Automatic update and install of the MOD, just upload the archive and edit one file
  • Several translations included - Czech, German, Danish, Dutch, Greek
Screenshots
  • Image
  • Image
  • Image

Credits
Many thanks to these users for their translations
  • jask - Danish
  • Erik Frèrejean - Dutch
  • ChriZathens - Greek (Helenic)
Last edited by ameeck on Sun Jun 21, 2009 2:43 pm, edited 1 time in total.
autinhyeu
Registered User
Posts: 685
Joined: Mon Apr 14, 2008 6:34 am
Location: Vietnamese
Contact:

Re: Static Pages

Post by autinhyeu »

MODDB ;)
Very great MOD...
Thanks!!!
phpBB Community in Vietnamese: http://www.phpbbvn.com

Sorry, my English language is fine impossible
User avatar
Hippie459MN
Registered User
Posts: 964
Joined: Mon Oct 15, 2007 10:13 pm
Location: Minnesota, USA
Contact:

Re: Static Pages

Post by Hippie459MN »

Glad to see it got released! I love this mod and been using it for a while now.

Again, Thank you. :D
User avatar
WhiteWolfSix
Registered User
Posts: 258
Joined: Sun May 15, 2005 5:43 am

Re: Static Pages

Post by WhiteWolfSix »

Ameeck, congrats for another validated MOD!
Image
WhiteWolfSix (WW6)
User avatar
seedoubleyou
Registered User
Posts: 62
Joined: Mon Aug 27, 2007 8:11 pm

Re: Static Pages

Post by seedoubleyou »

Had to edit it slightly to suit my subsilver style but other than that - GREAT MOD! Works perfectly, thank you :D
thesecret
Registered User
Posts: 270
Joined: Mon Sep 29, 2008 12:13 pm

Re: Static Pages

Post by thesecret »

a great one
momentum
Registered User
Posts: 1505
Joined: Thu Sep 20, 2007 4:07 am
Location: Melbourne, Australia

Re: Static Pages

Post by momentum »

Nice to see this validated. One of the handiest addons yet. :D

Craig.
QOTY: phpBB is free, good hosting is not. - robert (Lumpy Burgertushie)
robbaker
Registered User
Posts: 8
Joined: Tue May 19, 2009 3:00 pm

Re: Static Pages

Post by robbaker »

Hey. Just wanted to say congrats on completing this. Great mod. Thank you very much. Install was simple and everything works great! Thanks again!
User avatar
kopacko
Registered User
Posts: 254
Joined: Mon Feb 17, 2003 1:39 am

Re: Static Pages

Post by kopacko »

If I created a page using this mod, would it be searchable through the normal forum search engine?
User avatar
kopacko
Registered User
Posts: 254
Joined: Mon Feb 17, 2003 1:39 am

Re: Static Pages

Post by kopacko »

One more question, any way to mod this to work with Board3 portal so I have the blocks on the left and right sides?
rtadams89
Registered User
Posts: 67
Joined: Sat Jun 14, 2008 7:24 am

Re: Static Pages

Post by rtadams89 »

Sweet. This works really well.
AtomicJo
Registered User
Posts: 5
Joined: Fri Feb 13, 2009 8:00 pm

Re: Static Pages

Post by AtomicJo »

Great Mod !

Here are my french translation, if you want to include it in a future release ;)

Code: Select all

<?php
/**
*
* Static Pages MOD language file [French (Standard)]
*
* @author AtomicJo
*
* @version $Id$
* @copyright (c) 2009 Vojtech Vondra
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
    exit;
}

if (empty($lang) || !is_array($lang))
{
    $lang = array();
}

$lang = array_merge($lang, array(
    // Front-end keys
    'PAGE_ID_INVALID'            => 'La page sélectionnée n’existe pas.',
    'PAGE_NOT_FOUND'            => 'La page sélectionnée n’a pas été trouvée.',
    
    // ACP keys
    'ACP_MANAGE_PAGES' => 'Gestion des Pages',
    'ACP_PAGES' => 'Pages',
    'ACP_PAGES_EXPLAIN' => 'Ici vous pouvez ajouter et éditer les pages statiques de votre forum.',
    'ADD_PAGE' => 'Ajouter une page',
    'GO_TO_PAGE' => 'Voir la page',
    'MUST_SELECT_PAGE' => 'Vous devez sélectionner une page',
    'NO_PAGE_DESC' => 'Vous n’avez entré aucune description de la page.',
    'NO_PAGE_TITLE' => 'Vous n’avez entré aucun titre de la page.',
    'NO_PAGE_CONTENT' => 'Vous n’avez entré aucun contenu de la page.',
    'PAGE'     => 'Page',
    'PAGES'     => 'Pages',
    'PAGE_ADDED' => 'La page a été ajoutée avec succès.',
    'PAGE_AUTHOR' => 'Auteur de la page',
    'PAGE_CONTENT' => 'Contenu de la page',
    'PAGE_DESC' => 'Description',
    'PAGE_DESC_EXPLAIN' => 'Elle est utilisée à plusieurs places, ici dans le PCA pour identifier vos pages, dans le méta tag de description lors de l’affichage de la page et la liste des pages lorsqu’aucune page n’est sélectionnée.',
    'PAGE_DISPLAY' => 'Afficher la page',
    'PAGE_DISPLAY_EXPLAIN' => 'Si défini à Non, la page ne sera pas accessible au public. Les Administrateurs et les Modérateurs peuvent toujours avoir accès à ces pages directement.',
    'PAGE_HIDDEN' => 'Cette page est cachée, uniquement les Administrateurs et les Modérateurs peuvent la voir. Vous pouvez l’activer dans le PCA.',
    'PAGE_LINK' => 'Lien de la page',
    'PAGE_MAKE_HIDDEN' => 'Cacher',
    'PAGE_MAKE_VISIBLE' => 'Rendre visible',
    'PAGE_NOT_VISIBLE' => 'La page sélectionnée est maintenant cachée de la vue publique.',
    'PAGE_ORDER' => 'Ordre de la page',
    'PAGE_ORDER_EXPLAIN' => 'Si la liste des pages est affichée, vous pouvez définir l’ordre des pages en définissant un nombre ici, les pages sont sorties selon un tri croissant de ce champ.',
    'PAGE_TITLE' => 'Titre de la page',
    'PAGE_UPDATED' => 'La page a été mise à jour avec succès.',
    'PAGE_URL' => 'Identifiant de l’URL',
    'PAGE_URL_EXPLAIN' => 'Utilisé dans l’URL pour accéder à la page, utilisez des lettres miniscules, des nombres et des traits d’union. Si rien n’est entré, le système le générera à partir du titre de la page.',
    'PAGE_VISIBLE' => 'La page sélectionnée est maintenant affichée.',
    'STATIC_PAGES_MOD_UPDATED' => '<strong>MOD Page Statique mis à jour vers la version » %s</strong>',
    'STATIC_PAGES_MOD_INSTALLED' => '<strong>Le MOD Page Statique a été installé - Version du MOD » %s</strong>',
    
    // Log messages
    'LOG_PAGE_ADDED'    => '<strong>Page Statique ajoutée</strong><br />» %s',
    'LOG_PAGE_UPDATED'    => '<strong>Page Statique mise à jour</strong><br />» %s',
    'LOG_PAGE_REMOVED'    => '<strong>Page Statique supprimée</strong><br />» %s',
    
    // Manage pages permission
    'acl_a_manage_pages'            => array('lang' => 'Peut créer, éditer et supprimer les pages statiques', 'cat' => 'misc'),
));
?>
User avatar
seedoubleyou
Registered User
Posts: 62
Joined: Mon Aug 27, 2007 8:11 pm

Re: Static Pages

Post by seedoubleyou »

kopacko wrote:If I created a page using this mod, would it be searchable through the normal forum search engine?
Ive tried this, and no - the pages are not appearing through the search engine
Locked

Return to “[3.0.x] MOD Database Releases”