jaxon-php / jaxon-laravel by lagdo

Jaxon library integration for the Laravel framework
897
8
3
Package Data
Maintainer Username: lagdo
Maintainer Contact: thierry.feuzeu@lagdo-software.net (Thierry Feuzeu)
Package Create Date: 2016-06-04
Package Last Update: 2024-01-26
Home Page:
Language: PHP
License: BSD-3-Clause
Last Refreshed: 2024-04-23 03:08:41
Package Statistics
Total Downloads: 897
Monthly Downloads: 13
Daily Downloads: 0
Total Stars: 8
Total Watchers: 3
Total Forks: 1
Total Open Issues: 0

Jaxon Library for Laravel

This package integrates the Jaxon library into the Laravel 5 framework.

Features

  • Automatically register Jaxon classes from a preset directory.
  • Read Jaxon options from a file in Laravel config format.

Installation

Add the following lines in the composer.json file, and run the composer update command.

"require": {
    "jaxon-php/jaxon-laravel": "~2.0"
}

Add the following line to the providers entry in the app.php config file.

Jaxon\Laravel\JaxonServiceProvider::class

Add the following line to the aliases entry in the app.php config file.

'LaravelJaxon' => Jaxon\Laravel\Facades\Jaxon::class

Publish the package configuration.

php artisan vendor:publish --tag=config

Edit the config/jaxon.php file to suit the needs of your application.

Configuration

The settings in the jaxon.php config file are separated into two sections. The options in the lib section are those of the Jaxon core library, while the options in the app sections are those of the Laravel application.

The following options can be defined in the app section of the config file.

| Name | Description | |------|---------------| | classes | An array of directory containing Jaxon application classes | | views | An array of directory containing Jaxon application views | | | | |

By default, the views array is empty. Views are rendered from the framework default location. There's a single entry in the classes array with the following values.

| Name | Default value | Description | |------|---------------|-------------| | request.route | jaxon | The named route to the Jaxon request processor | | directory | app_path('Jaxon/Classes') | 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 | | | | |

The route option is overriden by the core.request.uri option of the Jaxon library.

Usage

This is an example of a Laravel controller using the Jaxon library.

use LaravelJaxon;

class DemoController extends Controller
{
    public function __construct()
    {
        // parent::__construct();
    }

    public function index()
    {
        // Register the Jaxon classes
        LaravelJaxon::register();

        // Print the page
        return view('index', array(
            'JaxonCss' => LaravelJaxon::css(),
            'JaxonJs' => LaravelJaxon::js(),
            'JaxonScript' => LaravelJaxon::script()
        ));
    }
}

Before it prints the page, the controller makes a call to LaravelJaxon::register() to export the Jaxon classes. Then it calls the LaravelJaxon::css(), LaravelJaxon::js() and LaravelJaxon::script() functions to get the CSS and javascript codes generated by Jaxon, which it inserts into the page.

The Jaxon classes

The Jaxon classes must inherit from \Jaxon\Sentry\Armada. By default, they are located in the app/Jaxon/Classes dir of the Laravel application, and the associated namespace is \Jaxon\App.

This is a simple example of a Jaxon class, defined in the app/Jaxon/Classes/HelloWorld.php file.

namespace Jaxon\App;

class HelloWorld extends \Jaxon\Sentry\Armada
{
    public function sayHello()
    {
        $this->response->assign('div2', 'innerHTML', 'Hello World!');
        return $this->response;
    }
}

Check the jaxon-examples package for more examples.

Request processing

By default, the Jaxon request are handled by the controller in the src/Http/Controllers/JaxonController.php file. The /jaxon route is defined in the src/Http/routes.php file, and linked to the JaxonController::process() method.

The request processing can be customized by extending the default controller and overloading the following method.

  • public function initInstance($instance): called for any Jaxon class instanciated.
  • public function beforeRequest($instance, $method, &$bEndRequest): called before processing the request.
  • public function afterRequest($instance, $method): called after processing the request.

See https://www.jaxon-php.org/docs/armada/bootstrap.html for more information about processing callbacks.

Contribute

  • Issue Tracker: github.com/jaxon-php/jaxon-laravel/issues
  • Source Code: github.com/jaxon-php/jaxon-laravel

License

The package is licensed under the BSD license.