PHP code example of gdbots / pbjx-bundle
1. Go to this page and download the library: Download gdbots/pbjx-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
gdbots / pbjx-bundle example snippets
final class ArticleController extends Controller
{
use PbjxControllerTrait;
/** @var Pbjx */
private $pbjx;
/**
* @param Pbjx $pbjx
*/
public function __construct(Pbjx $pbjx)
{
$this->pbjx = $pbjx;
}
/**
* @Route("/articles/{article_id}", et('article_id', $request->attributes->get('article_id'));
$getArticleResponse = $this->pbjx->request($getArticleRequest);
return $this->renderPbj($getArticleResponse);
}
}
txt
{{ pbj_url(pbj, 'canonical') }}