Exporter les classes dans un répertoire
Attention. Ces exemples sont pour la version 2.x de la librairie Jaxon.
Les classes à exporter sont dans deux répertoires.
Fichier /jaxon/class/dir/app/Test/App.php
.
use Jaxon\Response\Response;
class App
{
protected $response;
public function __construct()
{
$this->response = new Response();
}
public function sayHello($isCaps)
{
$text = ($isCaps) ? 'HELLO WORLD!' : 'Hello World!';
$this->response->assign('div1', 'innerHTML', $text);
$this->response->dialog->success("div1 text is now $text");
return $this->response;
}
public function setColor($sColor)
{
$this->response->assign('div1', 'style.color', $sColor);
$this->response->dialog->success("div1 color is now $sColor");
return $this->response;
}
public function showDialog()
{
$buttons = array(array('title' => 'Close', 'class' => 'btn', 'click' => 'close'));
$options = array('maxWidth' => 400);
$this->response->dialog->modal("Modal Dialog", "This modal dialog is powered by PgwModal!!", $buttons, $options);
return $this->response;
}
}
Fichier /jaxon/class/dir/ext/Test/Ext.php
.
use Jaxon\Response\Response;
class Ext
{
protected $response;
public function __construct()
{
$this->response = new Response();
}
public function sayHello($isCaps)
{
$text = ($isCaps) ? 'HELLO WORLD!' : 'Hello World!';
$this->response->assign('div2', 'innerHTML', $text);
$this->response->dialog->success("div2 text is now $text");
return $this->response;
}
public function setColor($sColor)
{
$this->response->assign('div2', 'style.color', $sColor);
$this->response->dialog->success("div2 color is now $sColor");
return $this->response;
}
public function showDialog()
{
$buttons = array(array('title' => 'Close', 'class' => 'btn', 'click' => 'close'));
$options = array('width' => 500);
$this->response->dialog->modal("Modal Dialog", "This modal dialog is powered by Twitter Bootstrap!!", $buttons, $options);
return $this->response;
}
}