open-orchestra/open-orchestra-cms-bundle

View on GitHub
Backoffice/GenerateForm/GenerateFormInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace OpenOrchestra\Backoffice\GenerateForm;

use OpenOrchestra\ModelInterface\Model\BlockInterface;
use Symfony\Component\Form\FormBuilderInterface;

/**
 * Interface GenerateFormInterface
 */
interface GenerateFormInterface
{
    /**
     * @param BlockInterface $block
     *
     * @return bool
     */
    public function support(BlockInterface $block);

    /**
     * @param FormBuilderInterface $builder
     * @param array                $options
     */
    public function buildForm(FormBuilderInterface $builder, array $options);

    /**
     * Get merge the default configuration and basic configuration for the block
     *
     * @return array
     */
    public function getMergedDefaultConfiguration();

    /**
     * Get the default configuration for the block
     *
     * @return array
     */
    public function getDefaultConfiguration();

    /**
     * Get the required uri parameter
     *
     * @return array
     */
    public function getRequiredUriParameter();

    /**
     * @return string
     */
    public function getTemplate();

    /**
     * @return string
     */
    public function getName();
}