| 1 | <?php |
||
| 17 | abstract class BasePage extends View implements WebViewInterface |
||
|
|
|||
| 18 | { |
||
| 19 | use \Victoire\Bundle\PageBundle\Entity\Traits\WebViewTrait; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Construct. |
||
| 23 | **/ |
||
| 24 | public function __construct() |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Get WebView children. |
||
| 34 | * Exclude unpublished or not published yet if asked. |
||
| 35 | * |
||
| 36 | * @param bool $excludeUnpublished |
||
| 37 | * |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | public function getWebViewChildren($excludeUnpublished = false) |
||
| 58 | } |
||
| 59 |