dezull / help-bundle
Documentation browser/generator for Symfony2
Installs: 34
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-03-29 14:36:55 UTC
README
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