|  Download Jaxon Library for SymfonyThis package integrates the Jaxon library into the Symfony framework. Features
Automatically register Jaxon classes from a pre-configured directory.
Read Jaxon options from a config file.
 InstallationAdd the following lines in the composer.jsonfile, and run thecomposer updatecommand. "require": {
    "jaxon-php/jaxon-symfony": "~3.2"
}
 Setup the default routing for Jaxon request by adding the following line in the config/routes.ymlconfig file. jaxon:
    resource: "@JaxonAjaxBundle/Resources/config/routes.yaml"
 Import the service definition and configuration file of the Jaxon bundle in the config/services.ymlconfig file. imports:
    ...
    - { resource: jaxon.yaml }
    - { resource: "@JaxonAjaxBundle/Resources/config/services.yaml" }
 Create and edit the config/jaxon.yamlfile to suit the needs of your application.
A sample config file is available in this repo. This config file by default registers Jaxon classes in the jaxon/Appdirectory with the\Jaxon\Appnamespace.
Make sure this directory exists, even if it is empty. ConfigurationThe settings in the config/jaxon.ymlconfig file are separated into two sections.
The options in thelibsection are those of the Jaxon core library, while the options in theappsections are those of the Symfony application. The following options can be defined in the appsection of the config file. | Name | Description |
|------|---------------|
| directories | An array of directory containing Jaxon application classes |
| views   | An array of directory containing Jaxon application views |
| | | | By default, the viewsarray is empty. Views are rendered from the framework default location.
There's a single entry in thedirectoriesarray with the following values. | Name | Default value | Description |
|------|---------------|-------------|
| directory | jaxon/App | The directory of the Jaxon classes |
| namespace | \Jaxon\App  | The namespace of the Jaxon classes |
| separator | .           | The separator in Jaxon class names |
| protected | empty array | Prevent Jaxon from exporting some methods |
| | | | UsageThis is an example of a Symfony controller using the Jaxon library. namespace App\Controller;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Jaxon\AjaxBundle\Jaxon;
class DemoController extends AbstractController
{
    /
     * @Route("/", name="home")
     */
    public function index(Jaxon $jaxon)
    {
        return $this->render('demo/index.html.twig', [
            'jaxonCss' => $jaxon->css(),
            'jaxonJs' => $jaxon->js(),
            'jaxonScript' => $jaxon->script(),
        ]);
    }
}
 Before it prints the page, the controller calls the $jaxon->css(),$jaxon->js()and$jaxon->script()functions to get the CSS and javascript codes generated by Jaxon, which it inserts into the page. The Jaxon classesThe Jaxon classes can inherit from \Jaxon\CallableClass.
By default, they are located in thejaxon/Appdir of the Symfony application, and the associated namespace is\Jaxon\App. This is a simple example of a Jaxon class, defined in the jaxon/App/HelloWorld.phpfile. namespace Jaxon\App;
class HelloWorld extends \Jaxon\CallableClass
{
    public function sayHello()
    {
        $this->response->assign('div2', 'innerHTML', 'Hello World!');
        return $this->response;
    }
}
 Request processingBy default, the Jaxon requests are handled by the controller in the src/Controller/JaxonController.phpfile.
The/jaxonroute is defined in thesrc/Resources/config/routes.yamlfile, and linked to theJaxonController::index()method. Contribute
Issue Tracker: github.com/jaxon-php/jaxon-symfony/issues
Source Code: github.com/jaxon-php/jaxon-symfony
 LicenseThe package is licensed under the BSD license. |