/**
  * @param ContentTypeRepositoryInterface       $contentTypeRepository
  * @param ContextManager                       $contextManager
  * @param string                               $parent
  * @param int                                  $weight
  * @param array                                $dataParameter
  * @param TranslatorInterface                  $translator
  * @param MultiLanguagesChoiceManagerInterface $multiLanguagesChoiceManager
  */
 public function __construct(ContentTypeRepositoryInterface $contentTypeRepository, ContextManager $contextManager, $parent, $weight, array $dataParameter, TranslatorInterface $translator, MultiLanguagesChoiceManagerInterface $multiLanguagesChoiceManager)
 {
     $this->contentTypes = $contentTypeRepository->findAllNotDeletedInLastVersion($contextManager->getCurrentLocale());
     $this->multiLanguagesChoiceManager = $multiLanguagesChoiceManager;
     parent::__construct('content_type_for_content', $weight, $parent, self::ROLE_ACCESS_CONTENT_TYPE_FOR_CONTENT, $dataParameter, $translator);
 }