Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'user_persona/templates/settings.php')
-rw-r--r--user_persona/templates/settings.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/user_persona/templates/settings.php b/user_persona/templates/settings.php
deleted file mode 100644
index c4f614ad6..000000000
--- a/user_persona/templates/settings.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-/**
- * ownCloud - Persona plugin
- *
- * @author Victor Dubiniuk
- * @copyright 2012-2013 Victor Dubiniuk victor.dubiniuk@gmail.com
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- */
-?>
-<div class="section">
- <h2><?php p($l->t('Mozilla Persona login settings')) ?>:</h2>
- <?php p($l->t('IF more than one user has email provided by Persona THEN')); ?>
- <select id="mozilla-persona-policy">
- <?php foreach ($_['allPolicies'] as $pValue => $pTitle) { ?>
- <?php $isCurrent = $pValue == $_['currentPolicy']; ?>
- <option <?php print_unescaped($isCurrent ? 'selected="selected"' : '') ?> value="<?php p($pValue) ?>">
- <?php p($l->t($pTitle)); ?>
- </option>
- <?php } ?>
- </select>
-</div>