summaryrefslogtreecommitdiffstats
path: root/settings/templates/apps.php
blob: 31de7fa2318196c7540193d718ffcf72c7f58943 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?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-{{id}}" data-category-id="{{id}}" tabindex="0">
		<a>{{displayName}}</a>
	</li>
{{/each}}

<?php if(OC_Config::getValue('appstoreenabled', true) === true): ?>
	<li>
		<a class="app-external" target="_blank" href="https://apps.owncloud.com/?xsortmode=high"><?php p($l->t('More apps'));?> </a>
	</li>
	<li>
		<a class="app-external" target="_blank" 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"><a href="{{detailpage}}" target="_blank">{{name}}</a></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')); ?> {{author}}
		{{#if licence}}
		({{licence}}-<?php p($l->t('licensed')); ?>)
		{{/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 appslink">
			<a id='userDocumentation' href='{{documentation.user}}' target="_blank"><?php p($l->t("User Documentation"));?></a>
			</span>
			{{/if}}

			{{#if documentation.admin}}
			<span class="adminDocumentation appslink">
			<a id='adminDocumentation' href='{{documentation.admin}}' target="_blank"><?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>

	{{#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}}

	{{#if update}}
	<input class="update" type="submit" value="<?php p($l->t('Update to %s', array('{{update}}'))); ?>" data-appid="{{id}}" />
	{{/if}}
	{{#if active}}
	<input class="enable" type="submit" data-appid="{{id}}" data-active="true" value="<?php p($l->t("Disable"));?>"/>
	<input type="checkbox" class="groups-enable" id="groups_enable-{{id}}"/>
	<label for="groups_enable-{{id}}"><?php p($l->t('Enable only for specific groups')); ?></label>
	<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">
	<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"'); }?>>
			<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">
		<div class="icon-search"></div>
		<h2><?php p($l->t('No apps found for your version')) ?></h2>
	</div>
</div>