- Posts: 18
- Thank you received: 4
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
Please Log in to join the conversation.
config-default.php
// Enable or disable single page application editor $config['editorEnabled'] = false;
Please Log in to join the conversation.
application/core/TopbarConfiguration.php: $editorEnabled = $event->get('isEditorEnabled'); application/core/TopbarConfiguration.php: if ($editorEnabled===null) { application/core/TopbarConfiguration.php: $editorEnabled = Yii::app()->getConfig('editorEnabled') ?? false; application/core/TopbarConfiguration.php: 'editorEnabled' => $editorEnabled, application/views/questionAdministration/partial/topbarBtns/questionTopbarRight_view.php: 'editorEnabled' => $editorEnabled application/views/questionAdministration/partial/topbarBtns/editQuestionTopbarRight_view.php: 'editorEnabled' => $editorEnabled application/views/questionGroupsAdministration/partial/topbarBtns/groupTopbarRight_view.php: 'editorEnabled' => $editorEnabled application/views/surveyAdministration/partial/topbar/surveyTopbarRight_view.php: * @var bool $editorEnabled application/views/surveyAdministration/partial/topbar/surveyTopbarRight_view.php: 'editorEnabled' => $editorEnabled application/views/surveyAdministration/partial/topbar/_newQuestionEditorBtn.php:if (isset($editorEnabled) && $editorEnabled && $editorUrl) {
Please Log in to join the conversation.
Please Log in to join the conversation.