Giter VIP home page Giter VIP logo

faq's Introduction

Mantis plugin FAQ 1.01

Author: Cas Nuy
Based upon: FAQ by pbia-at-engineering.com
Website: http://www.nuy.info
Mail: Cas-at-Nuy.info
Copyright: GPL

Description

This plugin only for MantisBT 1.x.x version. This plugin don't support MantisBT 2.x.x. For version for MantisBT 2.x.x look author on forum or other way and ask author. Not in Issue. Thank you.

This plugin enables a FAQ option on the main menu.
The FAQ can be searched in a number of ways.
Each FAQ can be connected site wide or to a specific project.
In addition a link can be added to the “bug view pages” such that an issue can be promoted to a FAQ.
Rights can be set who is allowed to do this.

Installation

Part 1

Creating the table should be automatic, if not, follow this.
Create table in the mantis database like:

CREATE TABLE XXXXXXXXX (
id int unsigned zerofill NOT NULL auto_increment,
project_id int unsigned zerofill NOT NULL,
poster_id int unsigned zerofill NOT NULL,
date_posted datetime NOT NULL,
last_modified datetime NOT NULL,
question varchar(255) NOT NULL,
answere text NOT NULL,
view_access int NOT NULL DEFAULT ‘10’,
PRIMARY KEY (id),
KEY id (id),
KEY headline (question),
KEY project_id (project_id),
KEY date_posted (date_posted)
);

XXXXXXXXX needs to be formatted as DB-prefix + '_plugin_faq_results_table'

Part 2

Copy the plugin into the plugins directory of your mantis installation.
Log on to mantis with Admin right
Go to Manage
Select Manage Plugins
Install FAQ 1.01
Configure plugin by clicking on the name after install.

Default values are:
Store FAQ project-wise
Enable Promotion of issues to FAQ
Permission level for this action is Developer.
View FAQ in standard Mantis window (opposite new window)
FAQ are open to all (opposite access-level check)
View threshold is Viewer

Change log

0.91 Initial release
0.92 Added automatic creation of table
Included All project-FAQ with project-specific FAQ
Added option to open FAQ in new window
Added option to set access level on FAQ
0.95 Used the default EVENT_MENU_ISSUE

faq's People

Contributors

kirill avatar vboctor avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.