@@ -2,6 +2,7 @@ | |||
namespace Lc\SovBundle\Container; | |||
use Lc\SovBundle\Component\ArrayComponent; | |||
use Lc\SovBundle\Component\CitiesComponent; | |||
use Lc\SovBundle\Component\CookieComponent; | |||
use Lc\SovBundle\Component\DateComponent; |
@@ -18,7 +18,7 @@ class PageFieldDefinition extends AbstractFieldDefinition | |||
]; | |||
} | |||
public function configurePanelMain(): array | |||
public function configurePanelGeneral(): array | |||
{ | |||
return [ | |||
'title', | |||
@@ -29,7 +29,7 @@ class PageFieldDefinition extends AbstractFieldDefinition | |||
public function configurePanels(): array | |||
{ | |||
return ['main', 'seo', 'conf']; | |||
return ['general', 'seo', 'conf']; | |||
} | |||
public function configureFields(): array |
@@ -222,5 +222,19 @@ abstract class AbstractRepositoryQuery implements RepositoryQueryInterface | |||
{ | |||
return $this->andWhere('.status >= 0'); | |||
} | |||
/* | |||
* POSITION | |||
*/ | |||
public function filterByPositionBiggerThan(int $position) | |||
{ | |||
return $this->andWhere('.position > :position')->setParameter('position', $position); | |||
} | |||
public function filterByPositionSmallerThan(int $position) | |||
{ | |||
return $this->andWhere('.position < :position')->setParameter('position', $position); | |||
} | |||
} | |||
@@ -148,6 +148,7 @@ entity: | |||
panels: | |||
general: Général | |||
configuration: Configuration | |||
conf: Configuration | |||
gallery: Galerie | |||
seo: Référencement | |||
opengraph: Opengraph |