You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

success.php 498B

1234567891011121314151617
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. /** @var array $_ */
  7. /** @var \OCP\IL10N $l */
  8. /** @var \OCP\Defaults $theme */
  9. ?>
  10. <div class="update">
  11. <h2><?php p($_['title']) ?></h2>
  12. <p><?php p($_['message']) ?></p>
  13. <p><a class="button primary" href="<?php p(\OC::$server->get(\OCP\IURLGenerator::class)->linkTo('', 'index.php')) ?>">
  14. <?php p($l->t('Go to %s', [$theme->getName()])); ?>
  15. </a></p>
  16. </div>