Server IP : 184.154.167.98 / Your IP : 3.149.24.70 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/nextcloud/apps/firstrunwizard/templates/ |
Upload File : |
<?php /** * @copyright Copyright (c) 2017 Arthur Schiwon <blizzz@arthur-schiwon.de> * * @author Arthur Schiwon <blizzz@arthur-schiwon.de> * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ /** @var \OCP\Defaults $theme */ /** @var array $_ */ style('firstrunwizard', ['personalsettings']); script('firstrunwizard', ['personalsettings']); ?> <div id="clientsbox" class="section clientsbox"> <h2><?php p($l->t('Get the apps to sync your files'));?></h2> <p><?php p($l->t('%s gives you access to your files wherever you are. Our easy to use desktop and mobile clients are available for all major platforms at zero cost.', [$theme->getName()])); ?></p> <div class="clientslinks"> <a href="<?php p($_['clients']['desktop']); ?>" rel="noreferrer noopener" target="_blank"> <img src="<?php print_unescaped(image_path('core', 'desktopapp.svg')); ?>" alt="<?php p($l->t('Desktop client'));?>"/> </a> <a href="<?php p($_['clients']['android']); ?>" rel="noreferrer noopener" target="_blank"> <img src="<?php print_unescaped(image_path('core', 'googleplay.png')); ?>" alt="<?php p($l->t('Android app'));?>" /> </a> <a href="<?php p($_['clients']['ios']); ?>" rel="noreferrer noopener" target="_blank"> <img src="<?php print_unescaped(image_path('core', 'appstore.svg')); ?>" alt="<?php p($l->t('iOS app'));?>" /> </a> </div> <?php $appPasswordUrl = \OC::$server->getURLGenerator()->linkToRoute('settings.PersonalSettings.index', ['section' => 'security']); $macOSProfile = \OCP\Util::linkToRemote('dav') . 'provisioning/apple-provisioning.mobileconfig'; $usesTLS = \OC::$server->getRequest()->getServerProtocol() === 'https'; ?> <p><?php print_unescaped($l->t('Setup sync clients using an <a href="%s">app password</a>. That way you can make sure you are able to revoke access in case you lose that device.', [$appPasswordUrl])); ?></p> </div> <div class="followupsection"> <h2><?php p($l->t('Connect other apps to %s', array($theme->getName()))); ?></h2> <p><?php print_unescaped($l->t('Besides the sync clients you can connect any other software that supports the WebDAV/CalDAV/CardDAV protocols to %s.', [$theme->getName()])); ?></p> <div class="clientslinks"> <a target="_blank" class="button" href="<?php p(link_to_docs('user-sync-calendars')) ?>" rel="noreferrer noopener"> <img class="appsmall appsmall-calendar svg" alt="" src="<?php p(image_path('core', 'places/calendar.svg')); ?>" /> <?php p($l->t('Connect your calendar'));?> </a> <a target="_blank" class="button" href="<?php p(link_to_docs('user-sync-contacts')) ?>" rel="noreferrer noopener"> <img class="appsmall appsmall-contacts svg" alt="" src="<?php p(image_path('core', 'places/contacts.svg')); ?>" /> <?php p($l->t('Connect your contacts'));?> </a> <a target="_blank" class="button" href="<?php p(link_to_docs('user-webdav')); ?>" rel="noreferrer noopener"> <img class="appsmall svg" alt="" src="<?php p(image_path('files', 'folder.svg')); ?>" /> <?php p($l->t('Access files via WebDAV'));?> </a> <?php if($usesTLS): ?> <a target="_blank" class="button" href="<?php p($macOSProfile); ?>" rel="noreferrer noopener"> <img class="appsmall appsmall-contacts svg" alt="" src="<?php p(image_path('core', 'places/default-app-icon.svg')); ?>" /> <?php p($l->t('Download macOS/iOS configuration profile'));?> </a> <?php endif; ?> </div> </div> <div class="followupsection"> <h2><?php p($l->t('Server address')); ?></h2> <p><?php p($l->t('Use this link to connect your apps and desktop client to this server:')); ?></p> <div> <input type="text" readonly="readonly" id="endpoint-url" value="<?php echo p($_['url']); ?>" /> <a class="clipboardButton icon icon-clippy" data-clipboard-target="#endpoint-url"></a> </div> </div>