Download the PHP package dezull/help-bundle without Composer
On this page you can find all versions of the php package dezull/help-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download dezull/help-bundle
More information about dezull/help-bundle
Files in dezull/help-bundle
Download dezull/help-bundle
More information about dezull/help-bundle
Files in dezull/help-bundle
Vendor dezull
Package help-bundle
Short Description Documentation browser/generator for Symfony2
License MIT
Homepage https://github.com/dezull/HelpBundle
Package help-bundle
Short Description Documentation browser/generator for Symfony2
License MIT
Homepage https://github.com/dezull/HelpBundle
Keywords helpDocumentation generator
Please rate this library. Is it a good library?
Informations about the package help-bundle
DezullHelpBundle
Help/Documentation bundle for Symfony2
Incompatible with Symfony 2.1.x
This bundle provides interface for viewing web application's documentation or help browser. The administration backend will allow users to manage documentation content. The included frontend template use two-pane layout to show help topics & content.
Dependencies
- symfony/framework-bundle
- doctrine/common
- symfony/doctrine-bundle
- TrsteelCkeditorBundle (Optional)
Installation
Using deps file
1. Add the bundle to deps
[DezullHelpBundle]
git=git://github.com/dezull/HelpBundle.git
target=/bundles/Dezull/Bundle/HelpBundle
2. Install vendor
$ php bin/vendors install
3. Add the bundle to app/AppKernel.php
$bundles = array(
...
new Dezull\Bundle\HelpBundle\DezullHelpBundle(),
...
);
4. Add namespace to app/autoload.php
$loader->registerNamespaces(array(
...
'Dezull' => __DIR__.'/../vendor/bundles',
...
));
5. Add routes. Customize to suite your application.
# This is the only required route need
DezullHelpBundle:
prefix: /prefix
resource: "@DezullHelpBundle/Resources/config/routing/main.yml"
_help_topic:
type: annotation
pattern: /help/!{title}
defaults: { _controller: DezullHelpBundle:Browser:index }
6. Install required tables into database, for example:
CREATE TABLE help_category (id INT AUTO_INCREMENT NOT NULL, name VARCHAR(120) NOT NULL, PRIMARY KEY(id)) ENGINE = InnoDB;
CREATE TABLE help_topic (id INT AUTO_INCREMENT NOT NULL, category_id INT DEFAULT NULL, title VARCHAR(120) NOT NULL, content LONGTEXT NOT NULL, INDEX IDX_FAD81EE212469DE2 (category_id), PRIMARY KEY(id)) ENGINE = InnoDB;
ALTER TABLE help_topic ADD CONSTRAINT FK_FAD81EE212469DE2 FOREIGN KEY (category_id) REFERENCES help_category(id);
Using composer.json
1. Add the bundle to composer.json
"require": {
...,
"dezull/help-bundle": "1.0.1"
},
2. Update the dependencies
$ composer.phar update
Usage
- Use the admin interface to add new a category and topics. For example, access it via http://example.com/admin/help/category
- To link to the help page, use route to DezullHelpBundle:Browser:Index with topic title as its only parameter. For example, http://example.com/help/!How+to+use+this+web+app
All versions of help-bundle with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.0
The package dezull/help-bundle contains the following files
Loading the files please wait ....