PHP code example of proklung / custom-request-responser-bundle
1. Go to this page and download the library: Download proklung/custom-request-responser-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/ */
proklung / custom-request-responser-bundle example snippets
use Prokl\CustomRequestResponserBundle\Services\Contracts\IndexRouteManagerInterface;
use Symfony\Component\HttpFoundation\Request;
class AdminRouteProcessor implements IndexRouteManagerInterface
{
/**
* @inheritDoc
*/
public function shouldIndex(Request $request): bool
{
$url = $request->getPathInfo();
// Не индексировать страницы, в url которых встречается /api/.
if (stripos($url, '/api/') !== false) {
return false;
}
return true;
}
}