2015-03-30 13:58:20 +00:00
|
|
|
<?php
|
|
|
|
style('settings', 'settings');
|
|
|
|
vendor_script(
|
|
|
|
'core',
|
|
|
|
[
|
2016-09-30 12:41:19 +00:00
|
|
|
'marked/marked.min',
|
2015-03-30 13:58:20 +00:00
|
|
|
]
|
|
|
|
);
|
|
|
|
script(
|
|
|
|
'settings',
|
|
|
|
[
|
|
|
|
'settings',
|
|
|
|
'apps',
|
|
|
|
]
|
|
|
|
);
|
|
|
|
/** @var array $_ */
|
|
|
|
?>
|
2014-08-14 13:48:38 +00:00
|
|
|
<script id="categories-template" type="text/x-handlebars-template">
|
|
|
|
{{#each this}}
|
2015-10-20 10:02:08 +00:00
|
|
|
<li id="app-category-{{ident}}" data-category-id="{{ident}}" tabindex="0">
|
2016-04-19 17:49:31 +00:00
|
|
|
<a href="#">{{displayName}}</a>
|
2015-03-26 09:28:49 +00:00
|
|
|
</li>
|
2014-08-14 13:48:38 +00:00
|
|
|
{{/each}}
|
2013-01-21 21:18:42 +00:00
|
|
|
|
2015-12-02 13:35:38 +00:00
|
|
|
<?php if($_['appstoreEnabled']): ?>
|
2014-08-14 13:48:38 +00:00
|
|
|
<li>
|
2017-01-10 10:02:05 +00:00
|
|
|
<a class="app-external" target="_blank" rel="noreferrer" href="https://docs.nextcloud.org/server/12/developer_manual/"><?php p($l->t('Developer documentation'));?> ↗</a>
|
2014-08-14 13:48:38 +00:00
|
|
|
</li>
|
|
|
|
<?php endif; ?>
|
|
|
|
</script>
|
2013-06-11 15:24:47 +00:00
|
|
|
|
2017-01-21 16:06:26 +00:00
|
|
|
<script id="app-template-installed" type="text/x-handlebars">
|
2017-04-25 23:50:22 +00:00
|
|
|
{{#if newCategory}}
|
2017-04-26 10:41:54 +00:00
|
|
|
<div class="apps-header">
|
|
|
|
<div class="app-image"></div>
|
|
|
|
<h2>{{categoryName}} <input class="enable" type="submit" data-bundleid="{{bundleId}}" data-active="true" value="<?php p($l->t('Enable all'));?>"/></h2>
|
|
|
|
<div class="app-version"></div>
|
|
|
|
<div class="app-level"></div>
|
|
|
|
<div class="app-groups"></div>
|
|
|
|
<div class="actions"> </div>
|
|
|
|
</div>
|
2017-04-25 23:50:22 +00:00
|
|
|
{{/if}}
|
2017-01-21 16:06:26 +00:00
|
|
|
<div class="section" id="app-{{id}}">
|
2017-01-22 21:16:12 +00:00
|
|
|
<div class="app-image app-image-icon"></div>
|
2017-03-28 23:12:46 +00:00
|
|
|
<div class="app-name">
|
2017-01-21 16:06:26 +00:00
|
|
|
{{#if detailpage}}
|
|
|
|
<a href="{{detailpage}}" target="_blank" rel="noreferrer">{{name}}</a>
|
|
|
|
{{else}}
|
|
|
|
{{name}}
|
|
|
|
{{/if}}
|
2017-03-28 23:12:46 +00:00
|
|
|
</div>
|
2017-03-28 21:55:11 +00:00
|
|
|
<div class="app-version">{{version}}</div>
|
2017-01-21 16:06:26 +00:00
|
|
|
<div class="app-level">
|
2017-03-28 23:12:46 +00:00
|
|
|
{{{level}}}{{#unless internal}}<a href="https://apps.nextcloud.com/apps/{{id}}"><?php p($l->t('View in store'));?> ↗</a>{{/unless}}
|
2017-01-21 16:06:26 +00:00
|
|
|
</div>
|
|
|
|
|
2017-03-28 21:55:11 +00:00
|
|
|
<div class="app-groups">
|
2017-01-21 16:06:26 +00:00
|
|
|
{{#if active}}
|
|
|
|
<div class="groups-enable">
|
|
|
|
<input type="checkbox" class="groups-enable__checkbox checkbox" id="groups_enable-{{id}}"/>
|
|
|
|
<label for="groups_enable-{{id}}"><?php p($l->t('Limit to groups')); ?></label>
|
2017-05-19 17:05:09 +00:00
|
|
|
<input type="hidden" class="group_select" title="<?php p($l->t('All')); ?>">
|
2017-01-21 16:06:26 +00:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="actions">
|
|
|
|
<div class="app-dependencies update hidden">
|
|
|
|
<p><?php p($l->t('This app has an update available.')); ?></p>
|
|
|
|
</div>
|
|
|
|
<div class="warning hidden"></div>
|
2017-01-23 15:29:16 +00:00
|
|
|
<input class="update hidden" type="submit" value="<?php p($l->t('Update to %s', array('{{update}}'))); ?>" data-appid="{{id}}" />
|
|
|
|
{{#if canUnInstall}}
|
2017-03-28 23:41:53 +00:00
|
|
|
<input class="uninstall" type="submit" value="<?php p($l->t('Remove')); ?>" data-appid="{{id}}" />
|
2017-01-23 15:29:16 +00:00
|
|
|
{{/if}}
|
2017-01-21 16:06:26 +00:00
|
|
|
{{#if active}}
|
|
|
|
<input class="enable" type="submit" data-appid="{{id}}" data-active="true" value="<?php p($l->t("Disable"));?>"/>
|
|
|
|
{{else}}
|
|
|
|
<input class="enable{{#if needsDownload}} needs-download{{/if}}" type="submit" data-appid="{{id}}" data-active="false" {{#unless canInstall}}disabled="disabled"{{/unless}} value="<?php p($l->t("Enable"));?>"/>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</script>
|
|
|
|
|
2014-08-14 13:48:38 +00:00
|
|
|
<script id="app-template" type="text/x-handlebars">
|
|
|
|
<div class="section" id="app-{{id}}">
|
|
|
|
{{#if preview}}
|
2017-04-24 21:52:07 +00:00
|
|
|
<div class="app-image{{#if previewAsIcon}} app-image-icon{{/if}} icon-loading">
|
2014-08-14 13:48:38 +00:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
2015-05-04 09:35:30 +00:00
|
|
|
<h2 class="app-name">
|
|
|
|
{{#if detailpage}}
|
2016-03-20 10:38:14 +00:00
|
|
|
<a href="{{detailpage}}" target="_blank" rel="noreferrer">{{name}}</a>
|
2015-05-04 09:35:30 +00:00
|
|
|
{{else}}
|
|
|
|
{{name}}
|
|
|
|
{{/if}}
|
|
|
|
</h2>
|
2015-04-07 09:55:10 +00:00
|
|
|
<div class="app-level">
|
|
|
|
{{{level}}}
|
|
|
|
</div>
|
2016-11-30 14:59:02 +00:00
|
|
|
{{#if ratingNumThresholdReached }}
|
2015-04-07 10:27:39 +00:00
|
|
|
<div class="app-score">{{{score}}}</div>
|
|
|
|
{{/if}}
|
2014-08-14 13:48:38 +00:00
|
|
|
<div class="app-detailpage"></div>
|
|
|
|
|
2015-03-06 15:28:38 +00:00
|
|
|
<div class="app-description-container hidden">
|
2017-03-28 23:35:18 +00:00
|
|
|
<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}}
|
2017-01-17 04:22:05 +00:00
|
|
|
<div class="app-description">{{{description}}}</div>
|
2015-03-06 15:28:38 +00:00
|
|
|
<!--<div class="app-changed">{{changed}}</div>-->
|
|
|
|
{{#if documentation}}
|
|
|
|
<p class="documentation">
|
|
|
|
<?php p($l->t("Documentation:"));?>
|
|
|
|
{{#if documentation.user}}
|
2015-07-22 12:02:43 +00:00
|
|
|
<span class="userDocumentation">
|
2016-03-20 10:38:14 +00:00
|
|
|
<a id="userDocumentation" class="appslink" href="{{documentation.user}}" target="_blank" rel="noreferrer"><?php p($l->t('User documentation'));?> ↗</a>
|
2015-03-06 15:28:38 +00:00
|
|
|
</span>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{#if documentation.admin}}
|
2015-07-22 12:02:43 +00:00
|
|
|
<span class="adminDocumentation">
|
2016-03-20 10:38:14 +00:00
|
|
|
<a id="adminDocumentation" class="appslink" href="{{documentation.admin}}" target="_blank" rel="noreferrer"><?php p($l->t('Admin documentation'));?> ↗</a>
|
2015-03-06 15:28:38 +00:00
|
|
|
</span>
|
|
|
|
{{/if}}
|
2016-06-10 13:15:27 +00:00
|
|
|
|
|
|
|
{{#if documentation.developer}}
|
|
|
|
<span class="developerDocumentation">
|
|
|
|
<a id="developerDocumentation" class="appslink" href="{{documentation.developer}}" target="_blank" rel="noreferrer"><?php p($l->t('Developer documentation'));?> ↗</a>
|
|
|
|
</span>
|
|
|
|
{{/if}}
|
2015-03-06 15:28:38 +00:00
|
|
|
</p>
|
2014-08-14 13:48:38 +00:00
|
|
|
{{/if}}
|
2016-06-10 13:15:27 +00:00
|
|
|
|
|
|
|
{{#if website}}
|
|
|
|
<a id="userDocumentation" class="appslink" href="{{website}}" target="_blank" rel="noreferrer"><?php p($l->t('Visit website'));?> ↗</a>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{#if bugs}}
|
|
|
|
<a id="adminDocumentation" class="appslink" href="{{bugs}}" target="_blank" rel="noreferrer"><?php p($l->t('Report a bug'));?> ↗</a>
|
|
|
|
{{/if}}
|
2015-03-06 15:28:38 +00:00
|
|
|
</div><!-- end app-description-container -->
|
2016-04-19 17:49:31 +00:00
|
|
|
<div class="app-description-toggle-show" role="link"><?php p($l->t("Show description …"));?></div>
|
|
|
|
<div class="app-description-toggle-hide hidden" role="link"><?php p($l->t("Hide description …"));?></div>
|
2015-03-06 15:28:38 +00:00
|
|
|
|
2016-02-16 11:59:24 +00:00
|
|
|
<div class="app-dependencies update hidden">
|
|
|
|
<p><?php p($l->t('This app has an update available.')); ?></p>
|
|
|
|
</div>
|
|
|
|
|
2016-01-07 13:55:23 +00:00
|
|
|
{{#if missingMinOwnCloudVersion}}
|
|
|
|
<div class="app-dependencies">
|
2016-06-20 08:38:37 +00:00
|
|
|
<p><?php p($l->t('This app has no minimum Nextcloud version assigned. This will be an error in the future.')); ?></p>
|
2016-01-07 13:55:23 +00:00
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
{{#if missingMaxOwnCloudVersion}}
|
|
|
|
<div class="app-dependencies">
|
2016-06-20 08:38:37 +00:00
|
|
|
<p><?php p($l->t('This app has no maximum Nextcloud version assigned. This will be an error in the future.')); ?></p>
|
2016-01-07 13:55:23 +00:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
|
2014-12-01 22:07:16 +00:00
|
|
|
{{#unless canInstall}}
|
2014-12-11 14:24:36 +00:00
|
|
|
<div class="app-dependencies">
|
|
|
|
<p><?php p($l->t('This app cannot be installed because the following dependencies are not fulfilled:')); ?></p>
|
2014-12-01 22:07:16 +00:00
|
|
|
<ul class="missing-dependencies">
|
|
|
|
{{#each missingDependencies}}
|
|
|
|
<li>{{this}}</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
2014-12-11 14:24:36 +00:00
|
|
|
</div>
|
2014-12-01 22:07:16 +00:00
|
|
|
{{/unless}}
|
|
|
|
|
2015-06-10 10:01:54 +00:00
|
|
|
<input class="update hidden" type="submit" value="<?php p($l->t('Update to %s', array('{{update}}'))); ?>" data-appid="{{id}}" />
|
2014-08-14 13:48:38 +00:00
|
|
|
{{#if active}}
|
|
|
|
<input class="enable" type="submit" data-appid="{{id}}" data-active="true" value="<?php p($l->t("Disable"));?>"/>
|
2016-12-02 22:54:24 +00:00
|
|
|
<div class="groups-enable">
|
2015-10-31 16:02:30 +00:00
|
|
|
<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>
|
2016-12-02 22:54:24 +00:00
|
|
|
</div>
|
2017-05-19 17:05:09 +00:00
|
|
|
<input type="hidden" class="group_select" title="<?php p($l->t('All')); ?>" style="width: 200px">
|
2014-08-14 13:48:38 +00:00
|
|
|
{{else}}
|
2016-04-11 14:48:07 +00:00
|
|
|
<input class="enable{{#if needsDownload}} needs-download{{/if}}" type="submit" data-appid="{{id}}" data-active="false" {{#unless canInstall}}disabled="disabled"{{/unless}} value="<?php p($l->t("Enable"));?>"/>
|
2014-12-01 22:07:16 +00:00
|
|
|
{{/if}}
|
2014-08-14 13:48:38 +00:00
|
|
|
{{#if canUnInstall}}
|
2017-04-05 20:12:49 +00:00
|
|
|
<input class="uninstall" type="submit" value="<?php p($l->t('Remove')); ?>" data-appid="{{id}}" />
|
2014-08-14 13:48:38 +00:00
|
|
|
{{/if}}
|
2014-05-08 17:26:20 +00:00
|
|
|
|
2013-08-18 15:37:22 +00:00
|
|
|
<div class="warning hidden"></div>
|
2014-08-14 13:48:38 +00:00
|
|
|
|
2012-08-04 23:41:55 +00:00
|
|
|
</div>
|
2014-08-14 13:48:38 +00:00
|
|
|
</script>
|
|
|
|
|
2015-10-15 14:15:42 +00:00
|
|
|
<div id="app-navigation" class="icon-loading" data-category="<?php p($_['category']);?>">
|
2014-08-14 13:48:38 +00:00
|
|
|
<ul id="apps-categories">
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
</div>
|
2017-04-24 21:13:46 +00:00
|
|
|
<div id="app-content" class="icon-loading">
|
2017-01-23 14:40:54 +00:00
|
|
|
<svg class="app-filter">
|
2016-08-18 13:54:19 +00:00
|
|
|
<defs><filter id="invertIcon"><feColorMatrix in="SourceGraphic" type="matrix" values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0"></feColorMatrix></filter></defs>
|
|
|
|
</svg>
|
2017-04-24 21:13:46 +00:00
|
|
|
<div id="apps-list"></div>
|
2016-03-31 13:26:37 +00:00
|
|
|
<div id="apps-list-empty" class="hidden emptycontent emptycontent-search">
|
2015-03-24 09:27:00 +00:00
|
|
|
<div class="icon-search"></div>
|
|
|
|
<h2><?php p($l->t('No apps found for your version')) ?></h2>
|
|
|
|
</div>
|
2011-08-10 10:20:43 +00:00
|
|
|
</div>
|