Issues (36)

templates/settings.admin.php (3 issues)

Labels
Severity
1
<?php
2
3
script('files_frommail', 'admin');
0 ignored issues
show
The function script was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

3
/** @scrutinizer ignore-call */ 
4
script('files_frommail', 'admin');
Loading history...
4
style('files_frommail', 'admin');
0 ignored issues
show
The function style was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

4
/** @scrutinizer ignore-call */ 
5
style('files_frommail', 'admin');
Loading history...
5
6
/** @var \OCP\IL10N $l */
7
?>
8
9
<form id="files_frommail" class="section">
10
	<h2><?php p($l->t('Drop mailbox')); ?></h2>
0 ignored issues
show
The function p was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

10
	<h2><?php /** @scrutinizer ignore-call */ p($l->t('Drop mailbox')); ?></h2>
Loading history...
11
	<p class="settings-hint"><?php p(
12
			$l->t(
13
				'Files FromMail allows you to configure drop mailbox to store mails and attachments into your Files.'
14
			)
15
		); ?></p>
16
17
	<div id="frommail_mailbox">
18
		<h3><?php p($l->t('Current mailbox')); ?></h3>
19
		<div id="frommail_list">
20
		</div>
21
	</div>
22
23
	<h3><?php p($l->t('Configure a new mailbox')); ?></h3>
24
25
	<div class="frommail-input">
26
		<input type="text" id="frommail_address" name="frommail_address"
27
			   placeholder="<?php p($l->t('mail address')); ?>">
28
		<input type="text" id="frommail_password" name="frommain_password"
29
			   placeholder="<?php p($l->t('password (optional)')); ?>">
30
31
		<a id="frommail_create" class="button"><span><?php p($l->t('Create')); ?></span></a>
32
	</div>
33
34
</form>
35