PHP code example of vincet / base-bundle
1. Go to this page and download the library: Download vincet/base-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/ */
vincet / base-bundle example snippets
namespace Acme\DemoBundle\Manager;
use VinceT\BaseBundle\Manager\BaseManager;
class PostManager extends BaseManager
{
}
[...]
$postManager = $this->container->get('post_manager');
[...]
$post = new Acme\DemoBundle\Entity\Post();
[...]
$postManager->create($post);
[...]
$postManager->update($post);
[...]
$postManager->delete($post);
[...]
namespace Acmd\DemoBundle\Controller;
use VinceT\BaseBundle\Controller\BaseAdminController;
class PostAdminController extends BaseAdminController
{
}