2017 © Pedro Peláez
 

library knowledge-base

PHP Component to build a knowledge base

image

lin3s/knowledge-base

PHP Component to build a knowledge base

  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 8 Versions
  • 1 % Grown

The README.md

Knowledge Base component

PHP Component to build a knowledge base from your Markup files easily., (*1)

SensioLabsInsight Build Status Scrutinizer Code Quality Total Downloads      Latest Stable Version Latest Unstable Version, (*2)

Installation

Make sure you have composer installed in your computer., (*3)

Install the component launching the following composer command, (*4)

$ composer require lin3s/knowledge-base

Install a theme for your knowledge base. We use the following at LIN3S:, (*5)

$ composer require lin3s/knowledge-base-GFMTemplate

Add the docs in markdown format to a folder that you will later add to the config., (*6)

Integrating it in your codebase

A front controller should look like this:, (*7)

<?php

require_once __DIR__ . '/../vendor/autoload.php';

use LIN3S\KnowledgeBase\Configuration;
use LIN3S\KnowledgeBase\Controller\PageController;
use LIN3S\KnowledgeBaseGFMTemplate\Template;
use Symfony\Component\HttpFoundation\Request;

$buildPath = realpath(dirname(__FILE__)) . '/build'; // Folder where all the cached files will be stored
$docsPath = realpath(dirname(__FILE__)) . '/docs';   // Folder where all the docs are located

$configuration = new Configuration($docsPath, $buildPath, new Template());
$controller = new PageController($configuration);

$request = Request::createFromGlobals();

if (preg_match('/\.(?:png|jpg|jpeg|gif|css|js)$/', $request->server->get('REQUEST_URI'))) {
    $response = $controller->assetAction($request);
} else {
    $response = $controller->documentAction($request);
}
$response->send();

You can edit as you want to match your needs, (*8)

Generating the docs

LIN3S Knowledge Base, caches all the markdown files already generated in html to improve performance., (*9)

Just create a docs.php file that includes the following to generate menu and html from your markdown files:, (*10)

#!/usr/bin/env php
<?php

require_once __DIR__ . '/../vendor/autoload.php';

use LIN3S\KnowledgeBase\Configuration;
use LIN3S\KnowledgeBaseGFMTemplate\Template;
use LIN3S\KnowledgeBase\Registry\GeneratorRegistry;
use LIN3S\KnowledgeBase\Generator\HTMLGenerator;
use LIN3S\KnowledgeBase\Generator\MenuGenerator;
use LIN3S\KnowledgeBase\Builder\DocumentationBuilder;
use LIN3S\KnowledgeBase\Iterator\DocumentIterator;

$docsPath = realpath(dirname(__FILE__)) . '/../docs';
$buildPath = realpath(dirname(__FILE__)) . '/../build';

$configuration = new Configuration($docsPath, $buildPath, new Template());

$generatorRegistry = new GeneratorRegistry();
$generatorRegistry
    ->add('html', new HTMLGenerator($this->configuration))
    ->add('route', new MenuGenerator($this->configuration));

$builder = new DocumentationBuilder(
    new DocumentIterator($this->configuration),
    $generatorRegistry
);

$builder->build();

Now just launch the following commands:, (*11)

$ php docs.php

You need to create a symbolic link to match the assets url with the template you are using., (*12)

Theming

To create your own theme just create a class that implements LIN3S\KnowledgeBase\Templating\TemplateInterface and pass it as third parameter to the Configuration class used by the command and the controller., (*13)

Template rendering works together with the Loader classes. This class is responsible of fetching all required data to generate a page. The DefaultLoader generates an array with the menu tree, the document converted to html and the configuration class., (*14)

Document building

Entry point for document building is located in DocumentationBuilder class that receives a DocumentIterator and an instance of GeneratorRegistry. The first one contains the reference to all documents that need to be parsed, the second one contains all the generators required in the building process., (*15)

If you want to add a custom Generator implement GeneratorInterface and add it to the GeneratorRegistry before passing it to the DocumentationBuilder., (*16)

"Generation docs" section above, describes the whole process with code., (*17)

Licensing Options

License, (*18)

The Versions

05/10 2015

dev-master

9999999-dev

PHP Component to build a knowledge base

  Sources   Download

MIT

The Requires

 

The Development Requires

05/10 2015

v0.1.6

0.1.6.0

PHP Component to build a knowledge base

  Sources   Download

MIT

The Requires

 

The Development Requires

25/09 2015

v0.1.5

0.1.5.0

PHP Component to build a knowledge base

  Sources   Download

MIT

The Requires

 

The Development Requires

25/09 2015

v0.1.4

0.1.4.0

PHP Component to build a knowledge base

  Sources   Download

MIT

The Requires

 

The Development Requires

25/09 2015

v0.1.3

0.1.3.0

PHP Component to build a knowledge base

  Sources   Download

MIT

The Requires

 

The Development Requires

25/09 2015

v0.1.2

0.1.2.0

PHP Component to build a knowledge base

  Sources   Download

MIT

The Requires

 

The Development Requires

24/09 2015

v0.1.1

0.1.1.0

PHP Component to build a knowledge base

  Sources   Download

MIT

The Requires

 

The Development Requires

15/09 2015

v0.1.0

0.1.0.0 http://kb.lin3s.com

PHP Component to build a knowledge base

  Sources   Download

MIT

The Requires