Skip to content

Commit

Permalink
Change the order of the HPPS settings
Browse files Browse the repository at this point in the history
  • Loading branch information
m1r0 committed Jan 15, 2024
1 parent ee779b6 commit a62fe37
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions includes/class-sensei-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -860,6 +860,14 @@ public function init_fields() {
'default' => false,
'section' => 'sensei-experimental-features',
);
$fields['experimental_progress_storage_synchronization'] = array(
'name' => '',
'description' => __( 'Synchronize the student progress between storages.', 'sensei-lms' ),
'form' => 'render_progress_storage_synchronization',
'type' => 'checkbox',
'default' => false,
'section' => 'sensei-experimental-features',
);
$fields['experimental_progress_storage_repository'] = array(
'name' => '', // ,
'description' => __( 'Choose a repository to store the progress and quiz submissions of your students.', 'sensei-lms' ),
Expand All @@ -869,14 +877,6 @@ public function init_fields() {
'section' => 'sensei-experimental-features',
'options' => Progress_Storage_Settings::get_storage_repositories(),
);
$fields['experimental_progress_storage_synchronization'] = array(
'name' => '',
'description' => __( 'Synchronize the student progress between storages.', 'sensei-lms' ),
'form' => 'render_progress_storage_synchronization',
'type' => 'checkbox',
'default' => false,
'section' => 'sensei-experimental-features',
);
}

/**
Expand Down

0 comments on commit a62fe37

Please sign in to comment.