2017 © Pedro PelĂĄez
 

symfony-bundle block-bundle

AppVerk block bundle

image

app-verk/block-bundle

AppVerk block bundle

  • Tuesday, June 12, 2018
  • by art4webs
  • Repository
  • 2 Watchers
  • 0 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

BlockBundle

Symfony Block Bundle, (*1)

Configure

Require the bundle with composer:, (*2)

$ composer require app-verk/block-bundle

Enable the bundle in the kernel:, (*3)

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new AppVerk\BlockBundle\BlockBundle(),
        // ...
    );
}

Twig helper

Render a block:, (*4)

{{ render_block(block_id) }}

Render a block with options:, (*5)

{{ render_block(block_id, {
    'template': 'BlockBundle:Block:sample.html.twig'
}) }}

Create Block:

Remember to extends AppVerk\BlockBundle\Block\AbstractBlock., (*6)

<?php

namespace AppBundle\Block;

use AppVerk\BlockBundle\Block\AbstractBlock;
use Symfony\Component\OptionsResolver\OptionsResolver;

class HelloBlock extends AbstractBlock
{
    protected function configureOptions(OptionsResolver $resolver)
    {
        parent::configureOptions($resolver);

        $resolver->setDefaults([
            'template' => 'AppBundle:Block:hello.html.twig',
            'message'  => null
        ]);
    }
}

Block should be set as public service or have alias., (*7)

services:
    _defaults:
        autowire: true
        autoconfigure: true
        public: false

    AppBundle\:
        resource: '../../*'
        exclude: '../../{Entity,Repository,Tests,Doctrine,Twig}'

    AppBundle\Block\HelloBlock:
        public: true

Execute in Twig:, (*8)

{{ render_block('AppBundle\\Block\\HelloBlock', {
    'template': 'AppBundle:Block:hello.html.twig',
    'message': 'Hello there!'
}) }}

More complicated Blocks can override execute method and used for example EntityManager:, (*9)

<?php

namespace AppBundle\Block;

use AppBundle\Entity\Product;
use AppVerk\BlockBundle\Block\AbstractBlock;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\EntityNotFoundException;
use Symfony\Component\OptionsResolver\OptionsResolver;

class ProductBlock extends AbstractBlock
{
    /**
     * @var EntityManagerInterface
     */
    private $entityManager;


    public function __construct(EntityManagerInterface $entityManager)
    {
        $this->entityManager = $entityManager;
    }

    protected function configureOptions(OptionsResolver $resolver)
    {
        parent::configureOptions($resolver);

        $resolver->setDefaults([
            'template' => 'AppBundle:Block:product.html.twig',
            'slug'     => ''
        ]);
    }

    public function execute(array $options = [])
    {
        $settings = $this->getSettings($options);

        $entity = $this->entityManager->getRepository(Product::class)->findOneBy([
            'slug' => $settings['slug']
        ]);
        if (!$entity) {
            throw new EntityNotFoundException();
        }

        return $this->renderResponse($settings['template'], [
            'settings' => $settings,
            'entity'   => $entity
        ]);
    }
}

License

The bundle is released under the MIT License., (*10)

The Versions

12/06 2018

dev-master

9999999-dev

AppVerk block bundle

  Sources   Download

MIT

The Requires

  • php ^7.0

 

by MichaƂ Kurcewicz

12/06 2018

v1.0

1.0.0.0

AppVerk block bundle

  Sources   Download

MIT

The Requires

  • php ^7.0

 

by MichaƂ Kurcewicz