FAQ Manager

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: 29216
Joined: Sat Aug 16, 2003 7:36 am

FAQ Manager

Post by Extensions Robot »

Modification name: FAQ Manager
Author: EXreaction
Modification description: Adds an easy to use FAQ Manager to the ACP.
Modification version: 1.2.6
Tested on phpBB version: 3.0.6

Download file: FAQ Manager 1.2.6.zip
File size: 130.45 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 16 times in total.
(this is a non-active account manager for the phpBB Extension Customisations Team)
Paul
Infrastructure Team Leader
Infrastructure Team Leader
Posts: 28616
Joined: Sat Dec 04, 2004 3:44 pm
Location: The netherlands.
Name: Paul Sohier
Contact:

FAQ Manager

Post by Paul »

Modification validated/released

Notes:
User avatar
EXreaction
Former Team Member
Posts: 5666
Joined: Sun Aug 21, 2005 9:31 pm
Location: Wisconsin, U.S.
Name: Nathan

FAQ Manager

Post by EXreaction »

Screenshots and translations: http://www.lithiumstudios.org/forum/vie ... f=31&t=464

Support by the author is only provided at http://www.lithiumstudios.org
A small fee is required for support by the author unless otherwise specified by the author in the release topic.
Bug reports are accepted and, if confirmed as a bug, you will receive support for fixing the bug for free by the mod author.
Last edited by EXreaction on Mon Oct 06, 2008 1:16 am, edited 3 times in total.
User avatar
Daan1992
Registered User
Posts: 40
Joined: Wed Dec 13, 2006 12:17 pm

Re: FAQ Manager

Post by Daan1992 »

This mod was just what I need! Here is the Dutch translation:

faq_manager.php

Code: Select all

<?php
/**
*
* @package phpBB3 FAQ Manager
* @copyright (c) 2007 EXreaction, Lithium Studios
* @license http://opensource.org/licenses/gpl-license.php GNU Public License 
*
*/

/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
    exit;
}

// Create the lang array if it does not already exist
if (empty($lang) || !is_array($lang))
{
    $lang = array();
}

// Merge the following language entries into the lang array
$lang = array_merge($lang, array(
    'ACP_FAQ_MANAGER'            => 'FAQ Beheerder',

    'BACKUP_LOCATION_NO_WRITE'    => 'Het is niet mogelijk om een backup bestand te maken. Controleer de permisies van de map store/faq_backup/.',
    'BAD_FAQ_FILE'                => 'Het bestand dat je probeerd te bewerken is geen FAQ bestand.',

    'CAT_ALREADY_EXISTS'        => 'Een categorie met je ingevoerde naam bestaat al.',
    'CATEGORY_NOT_EXIST'        => 'De gevraagde categorie bestaat al.',
    'CREATE_CATEGORY'            => 'Maak categorie',
    'CREATE_FIELD'                => 'Maak veld',

    'DELETE_CAT'                => 'Verwijder Categorie',
    'DELETE_CAT_CONFIRM'        => 'Ben je er zeker van dat je deze categorie wilt verwijderen? Dit verwijderd ook alle velden binnen deze categorie!',
    'DELETE_VAR'                => 'Verwijder veld',
    'DELETE_VAR_CONFIRM'        => 'Ben je er zeker van dat je dit veld wilt verwijderen?',

    'FAQ_CAT_LIST'                => 'Hier kun je de bestaande categorie(en) bekijken en aanpassen.',
    'FAQ_EDIT_SUCCESS'            => 'De FAQ is succesvol bijgewerkt.',
    'FAQ_FILE_NOT_EXIST'        => 'Het bestand dat je wilt aanpassen bestaat niet.',
    'FAQ_FILE_NO_WRITE'            => 'Het is niet mogelijk om dit bestand bij te werken. Controleer de permissies voor dit bestand..',
    'FAQ_FILE_SELECT'            => 'Selecteer het bestand dat je wilt aanpassen.',

    'LANGUAGE'                    => 'Taal',
    'LOAD_BACKUP'                => 'Laad Backup',

    'NAME'                        => 'Naam',
    'NOT_ALLOWED_OUT_OF_DIR'    => 'Het is niet toegestaan om bestanden buiten de language map aan te passen.',
    'NO_FAQ_FILES'                => 'Geen beschikbare FAQ bestanden.',
    'NO_FAQ_VARS'                => 'Er zijn geen FAQ variabelen in dit bestand.',

    'VAR_ALREADY_EXISTS'        => 'Een bestand met de ingevoerde naam bestaat al.',
    'VAR_NOT_EXIST'                => 'De gevraagde variabel bestaat niet..',
));

?>
info_acp_faq_manager.php

Code: Select all

<?php
/**
*
* @package phpBB3 FAQ Manager
* @copyright (c) 2007 EXreaction, Lithium Studios
* @license http://opensource.org/licenses/gpl-license.php GNU Public License 
*
*/

/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
    exit;
}

// Create the lang array if it does not already exist
if (empty($lang) || !is_array($lang))
{
    $lang = array();
}

// Merge the following language entries into the lang array
$lang = array_merge($lang, array(
    'ACP_FAQ_MANAGER'            => 'FAQ Beheerder',
));

?>
Above message may contain errors in spelling, grammar or other language issues. My apologies in advance.
rma-web
Registered User
Posts: 85
Joined: Sun Oct 14, 2007 11:01 pm
Location: NJ, USA
Name: Ryan Albertson
Contact:

Re: FAQ Manager

Post by rma-web »

works for me :D
viewsandthoughts
Registered User
Posts: 24
Joined: Thu Jan 24, 2008 6:44 am
Contact:

Re: FAQ Manager

Post by viewsandthoughts »

Awesome MOD, this is the first one that has worked without additional steps needed to be taken by me. Thanks for making it so easy to install and load.
User avatar
Kalipo
Registered User
Posts: 551
Joined: Mon Dec 08, 2003 1:47 pm

Re: FAQ Manager

Post by Kalipo »

Very handy. Thank you.

Now if there can be matching MODs made to do the same for TOU and Privacy Statements, that would be quite the suite :!:
My MOD request: MMORPG Workshop+
User avatar
EXreaction
Former Team Member
Posts: 5666
Joined: Sun Aug 21, 2005 9:31 pm
Location: Wisconsin, U.S.
Name: Nathan

Re: FAQ Manager

Post by EXreaction »

Kalipo wrote:Very handy. Thank you.

Now if there can be matching MODs made to do the same for TOU and Privacy Statements, that would be quite the suite :!:
Those are located in the ucp.php language files IIRC. You can edit them with the language editor that is built in to phpBB3.
User avatar
iyeru42
Registered User
Posts: 1120
Joined: Wed Feb 01, 2006 7:22 pm
Location: Madison, WI
Contact:

Re: FAQ Manager

Post by iyeru42 »

Can we see some screenshots?
My Website | My MOD Requests | Foreign Key Docs (some topics are not requests)
"It's easy to rebel, but it's hard to be recognized."
viewsandthoughts
Registered User
Posts: 24
Joined: Thu Jan 24, 2008 6:44 am
Contact:

Re: FAQ Manager

Post by viewsandthoughts »

Some screen shots for you :


The View of the Mod
Image
View from Admin of some topics
Image
View from Admin of Listings
Image
View of what you edit
Image
View in the website
Image
tivi
Registered User
Posts: 1
Joined: Mon Jan 28, 2008 7:54 pm

Re: FAQ Manager

Post by tivi »

Really awesome mod!

Here's my german translation:

faq_manager.php

Code: Select all

<?php
/**
*
* @package phpBB3 FAQ Manager
* @copyright (c) 2007 EXreaction, Lithium Studios
* @license http://opensource.org/licenses/gpl-license.php GNU Public License 
*
*/

/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

// Create the lang array if it does not already exist
if (empty($lang) || !is_array($lang))
{
	$lang = array();
}

// Merge the following language entries into the lang array
$lang = array_merge($lang, array(
	'ACP_FAQ_MANAGER'			=> 'FAQ Manager',

	'BACKUP_LOCATION_NO_WRITE'	=> 'Backupdatei ist nicht erstellbar.  Bitte überprüfe die Dateizugriffsrechte in store/faq_backup/.',
	'BAD_FAQ_FILE'				=> 'Die Datei, die du versuchst zu bearbeiten, ist keine FAQ Datei.',

	'CAT_ALREADY_EXISTS'		=> 'Eine Kategorie mit diesem Namen existiert bereits.',
	'CATEGORY_NOT_EXIST'		=> 'Die angeforderte Kategorie existiert nicht.',
	'CREATE_CATEGORY'			=> 'Erstelle Kategorie',
	'CREATE_FIELD'				=> 'Erstelle Feld',

	'DELETE_CAT'				=> 'Lösche Kategorie',
	'DELETE_CAT_CONFIRM'		=> 'Bist du sicher, dass du diese Kategorie löschen möchtest?  Alle Felder innerhalb dieser Kategorie werden gelöscht wenn du dies machst!',
	'DELETE_VAR'				=> 'Lösche Feld',
	'DELETE_VAR_CONFIRM'		=> 'Bist du sicher, dass du dieses Feld löschen möchtest?',

	'FAQ_CAT_LIST'				=> 'Hier kannst du Kategorien ansehen und sie bearbeiten.',
	'FAQ_EDIT_SUCCESS'			=> 'Die FAQ wurde erfolgreich geupdated.',
	'FAQ_FILE_NOT_EXIST'		=> 'Die Datei, die du versuchst zu bearbeiten, existiert nicht.',
	'FAQ_FILE_NO_WRITE'			=> 'Datei ist nicht schreibbar.  Bitte überprüfe die Dateizugriffsrechte für die Datei, die du bearbeiten möchtest.',
	'FAQ_FILE_SELECT'			=> 'Wähle die Datei aus, die du bearbeiten möchtest.',

	'LANGUAGE'					=> 'Sprache',
	'LOAD_BACKUP'				=> 'Backup laden',

	'NAME'						=> 'Name',
	'NOT_ALLOWED_OUT_OF_DIR'	=> 'Dir ist es nicht erlaubt Dateien außerhalb des language Ordner zu editieren.',
	'NO_FAQ_FILES'				=> 'Keine verfügbaren FAQ Dateien.',
	'NO_FAQ_VARS'				=> 'Es gibt keine FAQ Variablen in dieser Datei.',

	'VAR_ALREADY_EXISTS'		=> 'Ein Feld mit diesem Namen gibt es bereits.',
	'VAR_NOT_EXIST'				=> 'Die angeforderte Variable existiert nicht',
));

?>
User avatar
EXreaction
Former Team Member
Posts: 5666
Joined: Sun Aug 21, 2005 9:31 pm
Location: Wisconsin, U.S.
Name: Nathan

Re: FAQ Manager

Post by EXreaction »

Daan1992 wrote:This mod was just what I need! Here is the Dutch translation:
I am going to package the files in a zip and post it in the topic on my site...the language would go in the language/nl/ folder, correct?
tivi wrote:Really awesome mod!

Here's my german translation:
German would be language/de/ correct?
User avatar
EXreaction
Former Team Member
Posts: 5666
Joined: Sun Aug 21, 2005 9:31 pm
Location: Wisconsin, U.S.
Name: Nathan

Re: FAQ Manager

Post by EXreaction »

EDIT: Oops, this was supposed to be a PM. :P

Why do I keep clicking quote when I want to PM somebody? :shock:
User avatar
Rotsblok
Registered User
Posts: 648
Joined: Fri Nov 11, 2005 12:47 pm
Location: Upper north of Holland
Name: Rikkert Westa
Contact:

Re: FAQ Manager

Post by Rotsblok »

EXreaction wrote:
Daan1992 wrote:This mod was just what I need! Here is the Dutch translation:
I am going to package the files in a zip and post it in the topic on my site...the language would go in the language/nl/ folder, correct?
yes
Nederlandse Support site
Several dutch translations for 3.1 extensions if you need one or there is an update of an extension feel free to notify me.
Jume
Registered User
Posts: 198
Joined: Tue Jun 22, 2004 9:29 am

Re: FAQ Manager

Post by Jume »

Strange, I always get the following message:
Unable to create a backup file. Please check the directory permissions for store/faq_backup/.
Permissions are set to 777, but the message remains :?
Locked

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