mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-24 17:22:06 +01:00
27 lines
511 B
PHP
27 lines
511 B
PHP
<?php
|
|
|
|
|
|
namespace AppBundle\Controller;
|
|
|
|
use Afup\Site\Utils\Configuration;
|
|
|
|
interface SiteControllerInterface
|
|
{
|
|
/**
|
|
* @param array $blocks [
|
|
* 'community' => string,
|
|
* 'header' => string,
|
|
* 'sidebar' => string,
|
|
* 'social' => string,
|
|
* 'footer' => string
|
|
* ]
|
|
* @return void
|
|
*/
|
|
public function setDefaultBlocks(array $blocks);
|
|
|
|
/**
|
|
* @param Configuration $conf
|
|
*/
|
|
public function setConfiguration(Configuration $conf);
|
|
}
|