175 lines
5.7 KiB
PHP
175 lines
5.7 KiB
PHP
<?php
|
|
style('settings', 'settings');
|
|
vendor_style(
|
|
'core',
|
|
[
|
|
'select2/select2',
|
|
]
|
|
);
|
|
vendor_script(
|
|
'core',
|
|
[
|
|
'handlebars/handlebars',
|
|
'select2/select2'
|
|
]
|
|
);
|
|
script(
|
|
'settings',
|
|
[
|
|
'settings',
|
|
'apps',
|
|
]
|
|
);
|
|
/** @var array $_ */
|
|
?>
|
|
<script id="categories-template" type="text/x-handlebars-template">
|
|
{{#each this}}
|
|
<li id="app-category-{{ident}}" data-category-id="{{ident}}" tabindex="0">
|
|
<a>{{displayName}}</a>
|
|
</li>
|
|
{{/each}}
|
|
|
|
<?php if($_['appstoreEnabled']): ?>
|
|
<li>
|
|
<a class="app-external" target="_blank" rel="noreferrer" href="https://owncloud.org/dev"><?php p($l->t('Developer documentation'));?> ↗</a>
|
|
</li>
|
|
<?php endif; ?>
|
|
</script>
|
|
|
|
<script id="app-template" type="text/x-handlebars">
|
|
{{#if firstExperimental}}
|
|
<div class="section apps-experimental">
|
|
<h2><?php p($l->t('Experimental applications ahead')) ?></h2>
|
|
<p>
|
|
<?php p($l->t('Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches.')) ?>
|
|
</p>
|
|
</div>
|
|
{{/if}}
|
|
|
|
<div class="section" id="app-{{id}}">
|
|
{{#if preview}}
|
|
<div class="app-image{{#if previewAsIcon}} app-image-icon{{/if}} hidden">
|
|
</div>
|
|
{{/if}}
|
|
<h2 class="app-name">
|
|
{{#if detailpage}}
|
|
<a href="{{detailpage}}" target="_blank" rel="noreferrer">{{name}}</a>
|
|
{{else}}
|
|
{{name}}
|
|
{{/if}}
|
|
</h2>
|
|
<div class="app-version"> {{version}}</div>
|
|
{{#if profilepage}}<a href="{{profilepage}}" target="_blank" rel="noreferrer">{{/if}}
|
|
<div class="app-author"><?php p($l->t('by %s', ['{{author}}']));?>
|
|
{{#if licence}}
|
|
(<?php p($l->t('%s-licensed', ['{{licence}}'])); ?>)
|
|
{{/if}}
|
|
</div>
|
|
{{#if profilepage}}</a>{{/if}}
|
|
<div class="app-level">
|
|
{{{level}}}
|
|
</div>
|
|
{{#if score}}
|
|
<div class="app-score">{{{score}}}</div>
|
|
{{/if}}
|
|
<div class="app-detailpage"></div>
|
|
|
|
<div class="app-description-container hidden">
|
|
<div class="app-description"><pre>{{description}}</pre></div>
|
|
<!--<div class="app-changed">{{changed}}</div>-->
|
|
{{#if documentation}}
|
|
<p class="documentation">
|
|
<?php p($l->t("Documentation:"));?>
|
|
{{#if documentation.user}}
|
|
<span class="userDocumentation">
|
|
<a id="userDocumentation" class="appslink" href="{{documentation.user}}" target="_blank" rel="noreferrer"><?php p($l->t('User documentation'));?> ↗</a>
|
|
</span>
|
|
{{/if}}
|
|
|
|
{{#if documentation.admin}}
|
|
<span class="adminDocumentation">
|
|
<a id="adminDocumentation" class="appslink" href="{{documentation.admin}}" target="_blank" rel="noreferrer"><?php p($l->t('Admin documentation'));?> ↗</a>
|
|
</span>
|
|
{{/if}}
|
|
</p>
|
|
{{/if}}
|
|
</div><!-- end app-description-container -->
|
|
<div class="app-description-toggle-show"><?php p($l->t("Show description …"));?></div>
|
|
<div class="app-description-toggle-hide hidden"><?php p($l->t("Hide description …"));?></div>
|
|
|
|
<div class="app-dependencies update hidden">
|
|
<p><?php p($l->t('This app has an update available.')); ?></p>
|
|
</div>
|
|
|
|
{{#if missingMinOwnCloudVersion}}
|
|
<div class="app-dependencies">
|
|
<p><?php p($l->t('This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later.')); ?></p>
|
|
</div>
|
|
{{else}}
|
|
{{#if missingMaxOwnCloudVersion}}
|
|
<div class="app-dependencies">
|
|
<p><?php p($l->t('This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later.')); ?></p>
|
|
</div>
|
|
{{/if}}
|
|
{{/if}}
|
|
|
|
{{#unless canInstall}}
|
|
<div class="app-dependencies">
|
|
<p><?php p($l->t('This app cannot be installed because the following dependencies are not fulfilled:')); ?></p>
|
|
<ul class="missing-dependencies">
|
|
{{#each missingDependencies}}
|
|
<li>{{this}}</li>
|
|
{{/each}}
|
|
</ul>
|
|
</div>
|
|
{{/unless}}
|
|
|
|
<input class="update hidden" type="submit" value="<?php p($l->t('Update to %s', array('{{update}}'))); ?>" data-appid="{{id}}" />
|
|
{{#if active}}
|
|
<input class="enable" type="submit" data-appid="{{id}}" data-active="true" value="<?php p($l->t("Disable"));?>"/>
|
|
<span class="groups-enable">
|
|
<input type="checkbox" class="groups-enable__checkbox checkbox" id="groups_enable-{{id}}"/>
|
|
<label for="groups_enable-{{id}}"><?php p($l->t('Enable only for specific groups')); ?></label>
|
|
</span>
|
|
<br />
|
|
<input type="hidden" id="group_select" title="<?php p($l->t('All')); ?>" style="width: 200px">
|
|
{{else}}
|
|
<input class="enable" type="submit" data-appid="{{id}}" data-active="false" {{#unless canInstall}}disabled="disabled"{{/unless}} value="<?php p($l->t("Enable"));?>"/>
|
|
{{/if}}
|
|
{{#if canUnInstall}}
|
|
<input class="uninstall" type="submit" value="<?php p($l->t('Uninstall App')); ?>" data-appid="{{id}}" />
|
|
{{/if}}
|
|
|
|
<div class="warning hidden"></div>
|
|
|
|
</div>
|
|
</script>
|
|
|
|
<div id="app-navigation" class="icon-loading" data-category="<?php p($_['category']);?>">
|
|
<ul id="apps-categories">
|
|
|
|
</ul>
|
|
<div id="app-settings">
|
|
<div id="app-settings-header">
|
|
<button class="settings-button" data-apps-slide-toggle="#app-settings-content"></button>
|
|
</div>
|
|
|
|
<div id="app-settings-content" class="apps-experimental">
|
|
<input type="checkbox" id="enable-experimental-apps" <?php if($_['experimentalEnabled']) { print_unescaped('checked="checked"'); }?> class="checkbox">
|
|
<label for="enable-experimental-apps"><?php p($l->t('Enable experimental apps')) ?></label>
|
|
<p>
|
|
<small>
|
|
<?php p($l->t('Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches.')) ?>
|
|
</small>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="app-content">
|
|
<div id="apps-list" class="icon-loading"></div>
|
|
<div id="apps-list-empty" class="hidden emptycontent emptycontent-search">
|
|
<div class="icon-search"></div>
|
|
<h2><?php p($l->t('No apps found for your version')) ?></h2>
|
|
</div>
|
|
</div>
|