PHP code example of zenstruck / object-routing-bundle
1. Go to this page and download the library: Download zenstruck/object-routing-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/ */
zenstruck / object-routing-bundle example snippets
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Zenstruck\ObjectRoutingBundle\ZenstruckObjectRoutingBundle(),
);
}
namespace Acme\Entity;
class BlogPost
{
private $id;
private $slug;
private $body;
public function getId()
{
return $this->id;
}
public function getSlug()
{
return $this->slug;
}
public function getBody()
{
return $this->body;
}
}
namespace Acme\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class MyController extends Controller
{
public function myAction()
{
$post = // instance of Acme\Entity\BlogPost with id=1, path=example
// blog_post_show (/blog/1-example)
$url = $this->generateUrl('blog_post_show', ['id' => $post->getId(), 'slug' => $post->getSlug()]);
// blog_post_show with extra parameter and absolute (http://example.com/blog/1-example?view=full)
$url = $this->generateUrl(
'blog_post_show',
['id' => $post->getId(), 'slug' => $post->getSlug(), 'view' => 'full'],
true
);
// blog_post_edit (/blog/1/edit)
$url = $this->generateUrl('blog_post_edit', ['id' => $post->getId()]);
// blog_post_delete (/blog/1)
$url = $this->generateUrl('blog_post_delete', ['id' => $post->getId()]);
}
}
namespace Acme\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class MyController extends Controller
{
public function myAction()
{
$post = // instance of Acme\Entity\BlogPost with id=1, slug=example
// blog_post_show (/blog/1-example)
$url = $this->generateUrl($post); // blog_post_show url because it is the default route
$url = $this->generateUrl('blog_post_show', $post); // equivalent to above
// blog_post_show with extra parameter and absolute (http://example.com/blog/1-example?view=full)
$url = $this->generateUrl($post, ['view' => 'full'], true);
$url = $this->generateUrl('blog_post_show', $post, ['view' => 'full'], true); // equivalent to above
// blog_post_edit (/blog/1/edit)
$url = $this->generateUrl('blog_post_edit', $post);
// blog_post_delete (/blog/1)
$url = $this->generateUrl('blog_post_delete', $post);
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.