/**
 * Writes a common 'unarchive' button.
 *
 * @param   string  $task  The task name of this button.
 * @param   string  $text  The text of this button.
 *
 * @return  StandardButton
 *
 * @since   4.0.0
 */
public function unarchive(string $task, string $text = 'JTOOLBAR_UNARCHIVE') : StandardButton
{
    return $this->standardButton('unarchive', $text)->task($task);
}