Recommend this page to a friend! |
![]() ![]() |
Info | ![]() |
Demos | ![]() |
![]() ![]() |
Reputation | Support forum | Blog | Links |
Ratings | Unique User Downloads | Download Rankings | ||||
![]() ![]() ![]() | Total: 60 | All time: 9,861 This week: 397![]() |
Version | License | PHP version | Categories | |||
jaxon-zend 2.0.1 | BSD License | 5 | PHP 5, Libraries, AJAX |
Description | Author | |
This package integrates the Jaxon library with the Zend Framework 2 and 3, allowing to make AJAX calls to PHP classes. |
This package integrates the Jaxon library with the Zend Framework 2.3+ and 3.
Add the following lines in the composer.json
file, and run the composer update
command.
"require": {
"jaxon-php/jaxon-zend": "~2.0"
}
Add the Jaxon module to the modules
entry in the config/application.config.php
or config/modules.config.php
config file.
'modules' => array(
'Application',
'Jaxon\Zend',
),
Edit the module/Application/config/module.config.php as follow.
1. Import the Jaxon classes into the current namespace
use Jaxon\Zend\Factory\Zf2ControllerFactory;
2. Register the Jaxon plugin with the Service Manager
'service_manager' => array(
'invokables' => array(
'JaxonPlugin' => 'Jaxon\Zend\Controller\Plugin\JaxonPlugin',
),
),
3. Use the provided factory to create both the application controller and the Jaxon ZF controller.
'controllers' => array(
'factories' => array(
'Application\Controller\Demo' => Zf2ControllerFactory::class,
'Jaxon\Zend\Controller\Jaxon' => Zf2ControllerFactory::class,
),
),
This factory injects the Jaxon plugin into the ZF controller constructor.
4. Route the Jaxon request URI to the plugin controller.
'router' => array(
'routes' => array(
// Route to the Jaxon request processor
'jaxon' => array(
'type' => 'Zend\Mvc\Router\Http\Literal',
'options' => array(
'route' => '/jaxon',
'defaults' => array(
'controller' => 'Jaxon\Zend\Controller\Jaxon',
'action' => 'index',
),
),
),
),
),
Edit the module/Application/config/module.config.php file as follow.
use Jaxon\Zend\Factory\Zf3ControllerFactory;
use Jaxon\Zend\Controller\Plugin\JaxonPlugin;
use Jaxon\Zend\Controller\JaxonController;
'service_manager' => array(
'invokables' => array(
'JaxonPlugin' => JaxonPlugin::class,
),
),
Or
'service_manager' => array(
'factories' => array(
JaxonPlugin::class => InvokableFactory::class,
),
'aliases' => array(
'JaxonPlugin' => JaxonPlugin::class,
),
),
'controllers' => [
'factories' => [
Controller\DemoController::class => Zf3ControllerFactory::class,
JaxonController::class => Zf3ControllerFactory::class,
],
],
This factory injects the Jaxon plugin into the ZF controller constructor.
'router' => [
'routes' => [
// Route to the Jaxon request processor
'jaxon' => [
'type' => Literal::class,
'options' => [
'route' => '/jaxon',
'defaults' => [
'controller' => JaxonController::class,
'action' => 'index',
],
],
],
],
],
The config of the Jaxon library is defined in the config/jaxon.config.php
file.
A sample config file is provided in this repo.
The settings in the config/jaxon.config.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 Zend Framework 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 | |-----------|-----------------|-------------| | directory | {app_dir}/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 | | | | |
This is an example of a Zend Framework controller using the Jaxon library.
namespace Application\Controller;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;
use Jaxon\Zend\Controller\Plugin\JaxonPlugin;
class DemoController extends AbstractActionController
{
/
* @var \Jaxon\Zend\Controller\Plugin\JaxonPlugin
*/
protected $jaxon;
public function __construct(JaxonPlugin $jaxon)
{
$this->jaxon = $jaxon;
}
public function indexAction()
{
// Call the Jaxon module
$this->jaxon->register();
$view = new ViewModel(array(
'jaxonCss' => $this->jaxon->css(),
'jaxonJs' => $this->jaxon->js(),
'jaxonScript' => $this->jaxon->script(),
));
$view->setTemplate('demo/index');
return $view;
}
}
Before it prints the page, the controller makes a call to $jaxon->register()
to export the Jaxon classes.
Then it 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 classes must inherit from \Jaxon\Sentry\Armada
.
By default, they are loaded from the jaxon/Classes
dir at the root of the Zend Framework application, and the associated namespace is \Jaxon\App
.
This is a simple example of a Jaxon class, defined in the 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.
By default, the Jaxon request are handled by the controller in the src/Controller/JaxonController.php
file.
The /jaxon
route is linked by default to the JaxonController::actionIndex()
method.
The request processing can be customized by extending the default controller and overloading the following method.
See [https://www.jaxon-php.org/docs/armada/bootstrap.html]() for more information about processing callbacks.
The package is licensed under the BSD license.
![]() |
File | Role | Description | ||
---|---|---|---|---|
![]() |
||||
![]() |
||||
![]() ![]() |
Data | Auxiliary data | ||
![]() ![]() |
Data | Auxiliary data | ||
![]() ![]() |
Lic. | License text | ||
![]() ![]() |
Doc. | Documentation |
![]() |
/ | src |
File | Role | Description | ||
---|---|---|---|---|
![]() |
||||
![]() |
||||
![]() ![]() |
Class | Class source | ||
![]() ![]() |
Class | Class source | ||
![]() ![]() |
Class | Class source | ||
![]() ![]() |
Class | Class source |
![]() |
/ | src | / | Controller |
File | Role | Description | ||
---|---|---|---|---|
![]() |
||||
![]() ![]() |
Class | Class source |
![]() |
/ | src | / | Factory |
File | Role | Description |
---|---|---|
![]() ![]() |
Class | Class source |
![]() ![]() |
Class | Class source |
![]() | jaxon-zend-2017-09-24.zip 9KB |
![]() | jaxon-zend-2017-09-24.tar.gz 6KB |
![]() | Install with Composer |
Needed packages | ||
Class | Download | Why it is needed | Dependency |
---|---|---|---|
Jaxon Sentry | ![]() |
Uses the provided features | Required |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
92% |
|
|
User Ratings | ||||||||||||||||||||||||||||||
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.