Recommend this page to a friend! |
![]() ![]() |
Info | ![]() |
Demos | ![]() |
![]() ![]() |
Reputation | Support forum | Blog | Links |
Ratings | Unique User Downloads | Download Rankings | ||||
Not enough user ratings | Total: 38 | All time: 10,033 This week: 397![]() |
Version | License | PHP version | Categories | |||
jaxon-cake 2.0.0 | BSD License | 5 | PHP 5, Libraries, AJAX |
Description | Author | |
This package integrates the Jaxon library with the Cake PHP 3 framework, allowing to make AJAX calls to PHP classes. |
This package integrates the Jaxon library into the CakePHP 3 framework.
First install CakePHP version 3.
Create the composer.json
file into the installation dir with the following content.
{
"require": {
"jaxon-php/jaxon-cake": "~2.0",
}
}
Add the Jaxon plugin in the vendor/cakephp-plugins.php
file.
return [
'plugins' => [
...
'Jaxon/Cake' => $baseDir . '/vendor/jaxon-php/jaxon-cake/',
]
];
Load the Jaxon plugin in the controller or in the bootstrap file.
Plugin::load('Jaxon/Cake', array('autoload' => true, 'routes' => true));
Load the Jaxon component in the controller.
$this->loadComponent('Jaxon/Cake.Jaxon');
The settings in the config/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 CakePHP 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 | ROOT . '/jaxon/Controller' | 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 CakePHP controller using the Jaxon library.
namespace App\Controller;
class DemoController extends AppController
{
public function initialize()
{
parent::initialize();
// Load the Jaxon component
$this->loadComponent('Jaxon/Cake.Jaxon');
}
public function index()
{
// Call the Jaxon module
$this->Jaxon->register();
$this->set('jaxonCss', $this->Jaxon->css());
$this->set('jaxonJs', $this->Jaxon->js());
$this->set('jaxonScript', $this->Jaxon->script());
$this->render('demo');
}
}
Before it prints the page, the controller makes a call to $this->Jaxon->register()
to export the Jaxon classes.
Then it calls the $this->Jaxon->css()
, $this->Jaxon->js()
and $this->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 located in the ROOT/jaxon/Classes
dir of the CakePHP application, and the associated namespace is \Jaxon\App
.
This is an example of a Jaxon class, defined in the ROOT/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 defined in the config/routes.php
file, and linked to the JaxonController::index()
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 |
![]() |
/ | config |
File | Role | Description |
---|---|---|
![]() ![]() |
Aux. | Auxiliary script |
![]() ![]() |
Example | Example script |
![]() |
/ | src |
File | Role | Description | ||
---|---|---|---|---|
![]() |
||||
![]() ![]() |
Class | Class source | ||
![]() ![]() |
Class | Class source |
![]() |
/ | src | / | Controller |
File | Role | Description | ||
---|---|---|---|---|
![]() |
||||
![]() ![]() |
Class | Class source |
![]() | jaxon-cake-2017-09-24.zip 7KB |
![]() | jaxon-cake-2017-09-24.tar.gz 5KB |
![]() | 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 | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.