mirror of
https://github.com/moodle/moodle.git
synced 2025-04-14 13:02:07 +02:00
MDL-46481 backup: Ensure one-click backup is not displayed on restore
This commit is contained in:
parent
e6b00f032d
commit
fef943738d
@ -123,7 +123,8 @@ abstract class base_moodleform extends moodleform {
|
||||
$buttonarray[] = $this->_form->createElement('submit', 'submitbutton', get_string($this->uistage->get_ui()->get_name().'stage'.$this->uistage->get_stage().'action', 'backup'), array('class'=>'proceedbutton'));
|
||||
if (!$this->uistage->is_first_stage()) {
|
||||
$buttonarray[] = $this->_form->createElement('submit', 'previous', get_string('previousstage','backup'));
|
||||
} else {
|
||||
} else if ($this->uistage instanceof backup_ui_stage) {
|
||||
// Only display the button on the first stage of backup, they only place where it has an effect.
|
||||
$buttonarray[] = $this->_form->createElement('submit', 'oneclickbackup', get_string('jumptofinalstep', 'backup'),
|
||||
array('class' => 'oneclickbackup'));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user