Passed
Pull Request — master (#224)
by Kai
02:51
created
templates/main.tmpl.php 2 patches
Braces   +15 added lines, -7 removed lines patch added patch discarded remove patch
@@ -53,14 +53,17 @@  discard block
 block discarded – undo
53 53
 			<div class="icon-polls"></div>
54 54
 			<h2><?php p($l->t('No existing polls.')); ?></h2>
55 55
 		</div>
56
-	<?php else : ?>
56
+	<?php else {
57
+    : ?>
57 58
 			<div class="table has-controls">
58 59
 				<div class ="row table-header">
59 60
 
60 61
 					<div class="wrapper group-master">
61 62
 						<div class="wrapper group-1">
62 63
 							<div class="wrapper group-1-1">
63
-								<div class="column name">		<?php p($l->t('Title')); ?></div>
64
+								<div class="column name">		<?php p($l->t('Title'));
65
+}
66
+?></div>
64 67
 								<div class="column description"></div>
65 68
 							</div>
66 69
 							<div class="wrapper group-1-2">
@@ -83,7 +86,9 @@  discard block
 block discarded – undo
83 86
 
84 87
 				<?php foreach ($_['polls'] as $poll) : ?>
85 88
 					<?php
86
-						if (!userHasAccess($poll, $userId)) continue;
89
+						if (!userHasAccess($poll, $userId)) {
90
+						    continue;
91
+						}
87 92
 						// direct url to poll
88 93
 						$pollUrl = $urlGenerator->linkToRouteAbsolute('polls.page.goto_poll', array('hash' => $poll->getHash()));
89 94
 						$owner = $poll->getOwner();
@@ -259,12 +264,15 @@  discard block
 block discarded – undo
259 264
 		if (strpos($item, 'group_') == 0) {
260 265
 			$grp = substr($item, 6);
261 266
 			foreach ($user_groups as $user_group) {
262
-				if ($user_group == $grp) return true;
267
+				if ($user_group == $grp) {
268
+				    return true;
269
+				}
263 270
 			}
264
-		}
265
-		else if (strpos($item, 'user_') == 0) {
271
+		} else if (strpos($item, 'user_') == 0) {
266 272
 			$usr = substr($item, 5);
267
-			if ($usr == $userId) return true;
273
+			if ($usr == $userId) {
274
+			    return true;
275
+			}
268 276
 		}
269 277
 	}
270 278
 	return false;
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -27,9 +27,9 @@  discard block
 block discarded – undo
27 27
 	\OCP\Util::addStyle('polls', 'list');
28 28
 	\OCP\Util::addScript('polls', 'start');
29 29
 
30
-	$userId = $_['userId'];
31
-	$userMgr = $_['userMgr'];
32
-	$urlGenerator = $_['urlGenerator'];
30
+	$userId = $_[ 'userId' ];
31
+	$userMgr = $_[ 'userMgr' ];
32
+	$urlGenerator = $_[ 'urlGenerator' ];
33 33
 ?>
34 34
 	<div id="app-content">
35 35
 		<div id="app-content-wrapper">
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 						<input class="stop icon-close" style="display:none" value="" type="button">
49 49
 					</div>
50 50
 				</div>
51
-	<?php if (count($_['polls']) == 0) : ?>
51
+	<?php if (count($_[ 'polls' ]) == 0) : ?>
52 52
 		<div id="emptycontent" class="">
53 53
 			<div class="icon-polls"></div>
54 54
 			<h2><?php p($l->t('No existing polls.')); ?></h2>
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 					 </div>
82 82
 				</div>
83 83
 
84
-				<?php foreach ($_['polls'] as $poll) : ?>
84
+				<?php foreach ($_[ 'polls' ] as $poll) : ?>
85 85
 					<?php
86 86
 						if (!userHasAccess($poll, $userId)) continue;
87 87
 						// direct url to poll
@@ -90,15 +90,15 @@  discard block
 block discarded – undo
90 90
 
91 91
 						$expiry_style = '';
92 92
 						if ($poll->getType() == '0') {
93
-							$participated = $_['participations'];
93
+							$participated = $_[ 'participations' ];
94 94
 						} else {
95
-							$participated = $_['participations_text'];
95
+							$participated = $_[ 'participations_text' ];
96 96
 						}
97 97
 						$participated_class = 'partic_no';
98 98
 						$participated_title = $l->t('You did not vote');
99 99
 						$participated_count = count($participated);
100 100
 
101
-						$comments = $_['comments'];
101
+						$comments = $_[ 'comments' ];
102 102
 						$commented_class = 'commented_no';
103 103
 						$commented_title = $l->t('You did not comment');
104 104
 						$commented_count = count($comments);
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 						}
122 122
 
123 123
 						for ($i = 0; $i < count($participated); $i++) {
124
-							if ($poll->getId() == intval($participated[$i]->getPollId())) {
124
+							if ($poll->getId() == intval($participated[ $i ]->getPollId())) {
125 125
 								$participated_class = 'partic_yes';
126 126
 								$participated_title = $l->t('You voted');
127 127
 								array_splice($participated, $i, 1);
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 						}
131 131
 
132 132
 						for ($i = 0; $i < count($comments); $i++) {
133
-							if ($poll->getId() == intval($comments[$i]->getPollId())) {
133
+							if ($poll->getId() == intval($comments[ $i ]->getPollId())) {
134 134
 								$commented_class = 'commented_yes';
135 135
 								$commented_title = $l->t('You commented');
136 136
 								array_splice($comments, $i, 1);
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
 					<div class="row table-body">
144 144
 						<div class="wrapper group-master">
145 145
 							<div class="wrapper group-1">
146
-								<div class="thumbnail <?php p($expiry_style . " " . $commented_class. " " . $participated_class); ?>"></div>  <!-- Image to display status or type of poll */ -->
146
+								<div class="thumbnail <?php p($expiry_style . " " . $commented_class . " " . $participated_class); ?>"></div>  <!-- Image to display status or type of poll */ -->
147 147
 								<a href="<?php p($pollUrl); ?>" class="wrapper group-1-1">
148 148
 									<div class="column name">						  <?php p($poll->getTitle()); ?></div>
149 149
 									<div class="column description">				   <?php p($poll->getDescription()); ?></div>
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
 												</button>
167 167
 											</li>
168 168
 											<li>
169
-												<a href="<?php p($urlGenerator->linkToRoute('polls.page.edit_poll', ['hash' => $poll->getHash()])); ?>" class="menuitem action permanent" id="id_edit_<?php p($poll->getId()); ?>">
169
+												<a href="<?php p($urlGenerator->linkToRoute('polls.page.edit_poll', [ 'hash' => $poll->getHash() ])); ?>" class="menuitem action permanent" id="id_edit_<?php p($poll->getId()); ?>">
170 170
 													<span class="icon-rename"></span>
171 171
 													<span>Edit Poll</span>
172 172
 												</a>
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 	}
221 221
 	// Nextcloud >= 12
222 222
 	$groups = \OC::$server->getGroupManager()->getUserGroups(\OC::$server->getUserSession()->getUser());
223
-	return array_map(function ($group) {
223
+	return array_map(function($group) {
224 224
 		return $group->getGID();
225 225
 	}, $groups);
226 226
 }
Please login to merge, or discard this patch.
templates/create.tmpl.php 2 patches
Braces   +68 added lines, -20 removed lines patch added patch discarded remove patch
@@ -80,8 +80,11 @@  discard block
 block discarded – undo
80 80
 						<span>
81 81
 						<?php if ($isUpdate): ?>
82 82
 							<?php p($l->t('Edit poll') . ' ' . $poll->getTitle()); ?>
83
-						<?php else: ?>
84
-						  <?php p($l->t('Create new poll')); ?>
83
+						<?php else {
84
+    : ?>
85
+						  <?php p($l->t('Create new poll'));
86
+}
87
+?>
85 88
 						<?php endif; ?>
86 89
 						</span>
87 90
 					</div>
@@ -91,11 +94,20 @@  discard block
 block discarded – undo
91 94
 		<?php if ($isUpdate): ?>
92 95
 			<form name="finish_poll" action="<?php p($urlGenerator->linkToRoute('polls.page.update_poll')); ?>" method="POST">
93 96
 				<input type="hidden" name="pollId" value="<?php p($poll->getId()); ?>" />
94
-		<?php else: ?>
95
-			<form name="finish_poll" action="<?php p($urlGenerator->linkToRoute('polls.page.insert_poll')); ?>" method="POST">
97
+		<?php else {
98
+    : ?>
99
+			<form name="finish_poll" action="<?php p($urlGenerator->linkToRoute('polls.page.insert_poll'));
100
+}
101
+?>" method="POST">
96 102
 		<?php endif; ?>
97
-				<input type="hidden" name="chosenDates" id="chosenDates" value="<?php if (isset($chosen)) p($chosen); ?>" />
98
-				<input type="hidden" name="expireTs" id="expireTs" value="<?php if (isset($expireTs)) p($expireTs); ?>" />
103
+				<input type="hidden" name="chosenDates" id="chosenDates" value="<?php if (isset($chosen)) {
104
+    p($chosen);
105
+}
106
+?>" />
107
+				<input type="hidden" name="expireTs" id="expireTs" value="<?php if (isset($expireTs)) {
108
+    p($expireTs);
109
+}
110
+?>" />
99 111
 				<input type="hidden" name="userId" id="userId" value="<?php p($userId); ?>" />
100 112
 
101 113
 				<header class="row">
@@ -104,22 +116,40 @@  discard block
 block discarded – undo
104 116
 				<div class="new_poll row">
105 117
 					<div class="col-50">
106 118
 						<label for="pollTitle" class="input_title"><?php p($l->t('Title')); ?></label>
107
-						<input type="text" class="input_field" id="pollTitle" name="pollTitle" value="<?php if (isset($title)) p($title); ?>" />
119
+						<input type="text" class="input_field" id="pollTitle" name="pollTitle" value="<?php if (isset($title)) {
120
+    p($title);
121
+}
122
+?>" />
108 123
 						<label for="pollDesc" class="input_title"><?php p($l->t('Description')); ?></label>
109
-						<textarea class="input_field" id="pollDesc" name="pollDesc"><?php if (isset($desc)) p($desc); ?></textarea>
124
+						<textarea class="input_field" id="pollDesc" name="pollDesc"><?php if (isset($desc)) {
125
+    p($desc);
126
+}
127
+?></textarea>
110 128
 
111 129
 						<label class="input_title"><?php p($l->t('Access')); ?></label>
112 130
 
113
-						<input type="radio" name="accessType" id="private" value="registered" class="radio" <?php if (!$isUpdate || $access == 'registered') print_unescaped('checked'); ?> />
131
+						<input type="radio" name="accessType" id="private" value="registered" class="radio" <?php if (!$isUpdate || $access == 'registered') {
132
+    print_unescaped('checked');
133
+}
134
+?> />
114 135
 						<label for="private"><?php p($l->t('Registered users only')); ?></label>
115 136
 
116
-						<input type="radio" name="accessType" id="hidden" value="hidden" class="radio" <?php if ($isUpdate && $access == 'hidden') print_unescaped('checked'); ?> />
137
+						<input type="radio" name="accessType" id="hidden" value="hidden" class="radio" <?php if ($isUpdate && $access == 'hidden') {
138
+    print_unescaped('checked');
139
+}
140
+?> />
117 141
 						<label for="hidden"><?php p($l->t('hidden')); ?></label>
118 142
 
119
-						<input type="radio" name="accessType" id="public" value="public" class="radio" <?php if ($isUpdate && $access == 'public') print_unescaped('checked'); ?> />
143
+						<input type="radio" name="accessType" id="public" value="public" class="radio" <?php if ($isUpdate && $access == 'public') {
144
+    print_unescaped('checked');
145
+}
146
+?> />
120 147
 						<label for="public"><?php p($l->t('Public access')); ?></label>
121 148
 
122
-						<input type="radio" name="accessType" id="select" value="select" class="radio" <?php if ($isUpdate && $access == 'select') print_unescaped('checked'); ?>>
149
+						<input type="radio" name="accessType" id="select" value="select" class="radio" <?php if ($isUpdate && $access == 'select') {
150
+    print_unescaped('checked');
151
+}
152
+?>>
123 153
 						<label for="select"><?php p($l->t('Select')); ?></label>
124 154
 						<span id="id_label_select">...</span>
125 155
 
@@ -135,9 +165,12 @@  discard block
 block discarded – undo
135 165
 							</div>
136 166
 						</div>
137 167
 
138
-						<input type="hidden" name="accessValues" id="accessValues" value="<?php if ($isUpdate && $access == 'select') p($accessTypes) ?>" />
168
+						<input type="hidden" name="accessValues" id="accessValues" value="<?php if ($isUpdate && $access == 'select') {
169
+    p($accessTypes) ?>" />
139 170
 
140
-						<input id="isAnonymous" name="isAnonymous" type="checkbox" class="checkbox" <?php $isAnonymous ? print_unescaped('value="true" checked') : print_unescaped('value="false"'); ?> />
171
+						<input id="isAnonymous" name="isAnonymous" type="checkbox" class="checkbox" <?php $isAnonymous ? print_unescaped('value="true" checked') : print_unescaped('value="false"');
172
+}
173
+?> />
141 174
 						<label for="isAnonymous" class="input_title"><?php p($l->t('Anonymous')) ?></label>
142 175
 
143 176
 						<div id="anonOptions" style="display:none;">
@@ -153,20 +186,32 @@  discard block
 block discarded – undo
153 186
 					</div>
154 187
 					<div class="col-50">
155 188
 
156
-						<input type="radio" name="pollType" id="event" value="event" class="radio" <?php if (!$isUpdate || $poll->getType() == '0') print_unescaped('checked'); ?> />
189
+						<input type="radio" name="pollType" id="event" value="event" class="radio" <?php if (!$isUpdate || $poll->getType() == '0') {
190
+    print_unescaped('checked');
191
+}
192
+?> />
157 193
 						<label for="event"><?php p($l->t('Event schedule')); ?></label>
158 194
 
159 195
 						<!-- TODO texts to db -->
160
-						<input type="radio" name="pollType" id="text" value="text" class="radio" <?php if ($isUpdate && $poll->getType() == '1') print_unescaped('checked'); ?>>
196
+						<input type="radio" name="pollType" id="text" value="text" class="radio" <?php if ($isUpdate && $poll->getType() == '1') {
197
+    print_unescaped('checked');
198
+}
199
+?>>
161 200
 						<label for="text"><?php p($l->t('Text based')); ?></label>
162 201
 
163
-						<div id="date-select-container" <?php if ($isUpdate && $poll->getType() == '1') print_unescaped('style="display:none;"'); ?> >
202
+						<div id="date-select-container" <?php if ($isUpdate && $poll->getType() == '1') {
203
+    print_unescaped('style="display:none;"');
204
+}
205
+?> >
164 206
 							<label for="datetimepicker" class="input_title"><?php p($l->t('Dates')); ?></label>
165 207
 							<input id="datetimepicker" type="text" />
166 208
 							<table id="selected-dates-table" class="choices">
167 209
 							</table>
168 210
 						</div>
169
-						<div id="text-select-container" <?php if(!$isUpdate || $poll->getType() == '0') print_unescaped('style="display:none;"'); ?> >
211
+						<div id="text-select-container" <?php if(!$isUpdate || $poll->getType() == '0') {
212
+    print_unescaped('style="display:none;"');
213
+}
214
+?> >
170 215
 							<label for="text-title" class="input_title"><?php p($l->t('Text item')); ?></label>
171 216
 							<div class="input-group">
172 217
 								<input type="text" id="text-title" placeholder="<?php print_unescaped('Insert text...'); ?>" />
@@ -182,8 +227,11 @@  discard block
 block discarded – undo
182 227
 				<div class="form-actions">
183 228
 					<?php if ($isUpdate): ?>
184 229
 						<input type="submit" id="submit_finish_poll" class="button btn primary" value="<?php p($l->t('Update poll')); ?>" />
185
-					<?php else: ?>
186
-						<input type="submit" id="submit_finish_poll" class="button btn primary" value="<?php p($l->t('Create poll')); ?>" />
230
+					<?php else {
231
+    : ?>
232
+						<input type="submit" id="submit_finish_poll" class="button btn primary" value="<?php p($l->t('Create poll'));
233
+}
234
+?>" />
187 235
 					<?php endif; ?>
188 236
 					<a href="<?php p($urlGenerator->linkToRoute('polls.page.index')); ?>" id="submit_cancel_poll" class="button"><?php p($l->t('Cancel')); ?></a>
189 237
 				</div>
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -27,18 +27,18 @@  discard block
 block discarded – undo
27 27
 	\OCP\Util::addScript('polls', 'create_edit');
28 28
 	\OCP\Util::addScript('polls', 'vendor/jquery.datetimepicker.full.min');
29 29
 
30
-	$userId = $_['userId'];
31
-	$userMgr = $_['userMgr'];
32
-	$urlGenerator = $_['urlGenerator'];
33
-	$isUpdate = isset($_['poll']) && $_['poll'] != null;
30
+	$userId = $_[ 'userId' ];
31
+	$userMgr = $_[ 'userMgr' ];
32
+	$urlGenerator = $_[ 'urlGenerator' ];
33
+	$isUpdate = isset($_[ 'poll' ]) && $_[ 'poll' ] != null;
34 34
 	$isAnonymous = false;
35 35
 	$hideNames = false;
36 36
 
37 37
 	if ($isUpdate) {
38
-		$poll = $_['poll'];
38
+		$poll = $_[ 'poll' ];
39 39
 		$isAnonymous = $poll->getIsAnonymous();
40 40
 		$hideNames = $isAnonymous && $poll->getFullAnonymous();
41
-		$dates = $_['dates'];
41
+		$dates = $_[ 'dates' ];
42 42
 		$chosen = '[';
43 43
 		foreach ($dates as $d) {
44 44
 			if ($poll->getType() == '0') {
@@ -53,12 +53,12 @@  discard block
 block discarded – undo
53 53
 		$title = $poll->getTitle();
54 54
 		$desc = $poll->getDescription();
55 55
 		if ($poll->getExpire() != null) {
56
-			$expireTs = strtotime($poll->getExpire()) - 60*60*24; //remove one day, which has been added to expire at the end of a day
56
+			$expireTs = strtotime($poll->getExpire()) - 60 * 60 * 24; //remove one day, which has been added to expire at the end of a day
57 57
 			$expireStr = date('d.m.Y', $expireTs);
58 58
 		}
59 59
 		$access = $poll->getAccess();
60 60
 		$accessTypes = $access;
61
-		if (   $access != 'registered' 
61
+		if ($access != 'registered' 
62 62
 			&& $access != 'hidden' && $access != 'public'
63 63
 		) {
64 64
 			$access = 'select';
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
 							<table id="selected-dates-table" class="choices">
167 167
 							</table>
168 168
 						</div>
169
-						<div id="text-select-container" <?php if(!$isUpdate || $poll->getType() == '0') print_unescaped('style="display:none;"'); ?> >
169
+						<div id="text-select-container" <?php if (!$isUpdate || $poll->getType() == '0') print_unescaped('style="display:none;"'); ?> >
170 170
 							<label for="text-title" class="input_title"><?php p($l->t('Text item')); ?></label>
171 171
 							<div class="input-group">
172 172
 								<input type="text" id="text-title" placeholder="<?php print_unescaped('Insert text...'); ?>" />
Please login to merge, or discard this patch.
templates/goto.tmpl.php 2 patches
Spacing   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -27,18 +27,18 @@  discard block
 block discarded – undo
27 27
 	\OCP\Util::addStyle('polls', 'vote');
28 28
 	\OCP\Util::addScript('polls', 'vote');
29 29
 	
30
-	$userId = $_['userId'];
31
-	$userMgr = $_['userMgr'];
32
-	$urlGenerator = $_['urlGenerator'];
33
-	$avaMgr = $_['avatarManager'];
30
+	$userId = $_[ 'userId' ];
31
+	$userMgr = $_[ 'userMgr' ];
32
+	$urlGenerator = $_[ 'urlGenerator' ];
33
+	$avaMgr = $_[ 'avatarManager' ];
34 34
 
35
-	$poll = $_['poll'];
36
-	$dates = $_['dates'];
37
-	$votes = $_['votes'];
38
-	$comments = $_['comments'];
35
+	$poll = $_[ 'poll' ];
36
+	$dates = $_[ 'dates' ];
37
+	$votes = $_[ 'votes' ];
38
+	$comments = $_[ 'comments' ];
39 39
 	$isAnonymous = $poll->getIsAnonymous() && $userId != $poll->getOwner();
40 40
 	$hideNames = $poll->getIsAnonymous() && $poll->getFullAnonymous();
41
-	$notification = $_['notification'];
41
+	$notification = $_[ 'notification' ];
42 42
 
43 43
 	if ($poll->getExpire() == null) {
44 44
 		$expired = false;
@@ -47,14 +47,14 @@  discard block
 block discarded – undo
47 47
 	}
48 48
 ?>
49 49
 
50
-<?php if($poll->getType() == '0') : ?>
51
-	<?php foreach($dates as $d) : ?>
50
+<?php if ($poll->getType() == '0') : ?>
51
+	<?php foreach ($dates as $d) : ?>
52 52
 		<input class="hidden-dates" type="hidden" value="<?php print_unescaped($d->getDt()); ?>" />
53 53
 	<?php endforeach ?>
54 54
 <?php endif ?>
55 55
 
56 56
 <?php
57
-if (   $poll->getDescription() != null 
57
+if ($poll->getDescription() != null 
58 58
 	&& $poll->getDescription() != ''
59 59
 ) {
60 60
 	$description = nl2br($poll->getDescription());
@@ -65,13 +65,13 @@  discard block
 block discarded – undo
65 65
 // init array for counting 'yes'-votes for each date
66 66
 $total_y = array();
67 67
 $total_n = array();
68
-for ($i = 0 ; $i < count($dates) ; $i++) {
69
-	$total_y[$i] = 0;
70
-	$total_n[$i] = 0;
68
+for ($i = 0; $i < count($dates); $i++) {
69
+	$total_y[ $i ] = 0;
70
+	$total_n[ $i ] = 0;
71 71
 }
72 72
 $user_voted = array();
73 73
 
74
-$pollUrl = $urlGenerator->linkToRouteAbsolute('polls.page.goto_poll', ['hash' => $poll->getHash()]);
74
+$pollUrl = $urlGenerator->linkToRouteAbsolute('polls.page.goto_poll', [ 'hash' => $poll->getHash() ]);
75 75
 ?>
76 76
 
77 77
 <div id="app">
@@ -123,10 +123,10 @@  discard block
 block discarded – undo
123 123
 									//group by user
124 124
 									$others = array();
125 125
 									foreach ($votes as $vote) {
126
-										if (!isset($others[$vote->getUserId()])) {
127
-											$others[$vote->getUserId()] = array();
126
+										if (!isset($others[ $vote->getUserId() ])) {
127
+											$others[ $vote->getUserId() ] = array();
128 128
 										}
129
-										array_push($others[$vote->getUserId()], $vote);
129
+										array_push($others[ $vote->getUserId() ], $vote);
130 130
 									}
131 131
 									$userCnt = 0;
132 132
 									foreach (array_keys($others) as $usr) {
@@ -135,26 +135,26 @@  discard block
 block discarded – undo
135 135
 											// if poll expired, just put current user among the others;
136 136
 											// otherwise skip here to add current user as last row (to vote)
137 137
 											if (!$expired) {
138
-												$user_voted = $others[$usr];
138
+												$user_voted = $others[ $usr ];
139 139
 												continue;
140 140
 											}
141 141
 										}
142 142
 										print_unescaped('<tr>');
143 143
 										print_unescaped('<td class="avatar-cell">');
144
-										if (	$userMgr->get($usr) != null 
144
+										if ($userMgr->get($usr) != null 
145 145
 											&& !$isAnonymous && !$hideNames
146 146
 										) {
147
-											print_unescaped('<div class="poll avatardiv" title="'.($usr).'"></div>');
147
+											print_unescaped('<div class="poll avatardiv" title="' . ($usr) . '"></div>');
148 148
 											print_unescaped('</td>');
149 149
 											print_unescaped('<td colspan="2" class="name">');
150 150
 											p($userMgr->get($usr)->getDisplayName());
151 151
 										} else {
152 152
 											if ($isAnonymous || $hideNames) {
153
-											print_unescaped('<div class="poll avatardiv" title="'.($userCnt).'"></div>');
153
+											print_unescaped('<div class="poll avatardiv" title="' . ($userCnt) . '"></div>');
154 154
 											print_unescaped('</td>');
155 155
 											print_unescaped('<td colspan="2" class="name">');
156 156
 											} else {
157
-												print_unescaped('<div class="poll avatardiv" title="'.($usr).'"></div>');
157
+												print_unescaped('<div class="poll avatardiv" title="' . ($usr) . '"></div>');
158 158
 												print_unescaped('</td>');
159 159
 												print_unescaped('<td colspan="2" class="name">');
160 160
 												p($usr);
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
 											}
175 175
 											// look what user voted for this dts
176 176
 											$found = false;
177
-											foreach ($others[$usr] as $vote) {
177
+											foreach ($others[ $usr ] as $vote) {
178 178
 												$voteVal = null;
179 179
 												if ($poll->getType() == '0') {
180 180
 													$voteVal = strtotime($vote->getDt());
@@ -184,10 +184,10 @@  discard block
 block discarded – undo
184 184
 												if ($date_id == $voteVal) {
185 185
 													if ($vote->getType() == '1') {
186 186
 														$cl = 'poll-cell yes';
187
-														$total_y[$i_tot]++;
187
+														$total_y[ $i_tot ]++;
188 188
 													} else if ($vote->getType() == '0') {
189 189
 														$cl = 'poll-cell no';
190
-														$total_n[$i_tot]++;
190
+														$total_n[ $i_tot ]++;
191 191
 													} else if ($vote->getType() == '2') {
192 192
 														$cl = 'poll-cell maybe';
193 193
 													} else {
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
 									print_unescaped('<tr class="current-user">');
216 216
 									print_unescaped('<td class="avatar-cell">');
217 217
 									if (User::isLoggedIn()) {
218
-										print_unescaped('<div class="poll avatardiv" title="'.($userId).'"></div>');
218
+										print_unescaped('<div class="poll avatardiv" title="' . ($userId) . '"></div>');
219 219
 										print_unescaped('</td>');
220 220
 										print_unescaped('<td class="name">');
221 221
 										p($userMgr->get($userId)->getDisplayName());
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
 										if (isset($user_voted)) {
241 241
 											foreach ($user_voted as $obj) {
242 242
 												$voteVal = null;
243
-												if($poll->getType() == '0') {
243
+												if ($poll->getType() == '0') {
244 244
 													$voteVal = strtotime($obj->getDt());
245 245
 												} else {
246 246
 													$voteVal = $obj->getText();
@@ -248,11 +248,11 @@  discard block
 block discarded – undo
248 248
 												if ($voteVal == $date_id) {
249 249
 													if ($obj->getType() == '1') {
250 250
 														$cl = 'poll-cell active yes';
251
-														$total_y[$i_tot]++;
251
+														$total_y[ $i_tot ]++;
252 252
 													} else if ($obj->getType() == '0') {
253 253
 														$cl = 'poll-cell active no';
254
-														$total_n[$i_tot]++;
255
-													} else if($obj->getType() == '2') {
254
+														$total_n[ $i_tot ]++;
255
+													} else if ($obj->getType() == '2') {
256 256
 														$cl = 'poll-cell active maybe';
257 257
 													}
258 258
 													break;
@@ -272,28 +272,28 @@  discard block
 block discarded – undo
272 272
 							<tbody class="summary">
273 273
 								<?php
274 274
 									$diff_array = $total_y;
275
-									for($i = 0 ; $i < count($diff_array) ; $i++) {
276
-										$diff_array[$i] = ($total_y[$i] - $total_n[$i]);
275
+									for ($i = 0; $i < count($diff_array); $i++) {
276
+										$diff_array[ $i ] = ($total_y[ $i ] - $total_n[ $i ]);
277 277
 									}
278 278
 									$max_votes = max($diff_array);
279 279
 								?>
280 280
 								<tr class="total">
281 281
 									<th colspan="3"><?php p($l->t('Total')); ?></th>
282
-									<?php for ($i = 0 ; $i < count($dates) ; $i++) : ?>
282
+									<?php for ($i = 0; $i < count($dates); $i++) : ?>
283 283
 										<td class="total">
284 284
 											<?php
285
-											$classSuffix = "pollid_" . $dates[$i]->getId();
286
-											if (isset($total_y[$i])) {
287
-												$val = $total_y[$i];
285
+											$classSuffix = "pollid_" . $dates[ $i ]->getId();
286
+											if (isset($total_y[ $i ])) {
287
+												$val = $total_y[ $i ];
288 288
 											} else {
289 289
 												$val = 0;
290 290
 											}
291 291
 											?>
292
-											<div id="id_y_<?php p($classSuffix); ?>" class="result-cell yes" data-value=<?php p(isset($total_y_others[$i]) ? $total_y_others[$i] : '0'); ?>>
292
+											<div id="id_y_<?php p($classSuffix); ?>" class="result-cell yes" data-value=<?php p(isset($total_y_others[ $i ]) ? $total_y_others[ $i ] : '0'); ?>>
293 293
 												<?php p($val); ?>
294 294
 											</div>
295
-											<div id="id_n_<?php p($classSuffix); ?>" class="result-cell no" data-value=<?php p(isset($total_n_others[$i]) ? $total_n_others[$i] : '0'); ?>>
296
-												<?php p(isset($total_n[$i]) ? $total_n[$i] : '0'); ?>
295
+											<div id="id_n_<?php p($classSuffix); ?>" class="result-cell no" data-value=<?php p(isset($total_n_others[ $i ]) ? $total_n_others[ $i ] : '0'); ?>>
296
+												<?php p(isset($total_n[ $i ]) ? $total_n[ $i ] : '0'); ?>
297 297
 											</div>
298 298
 										</td>
299 299
 									<?php endfor; ?>
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
 									<?php
304 304
 									for ($i = 0; $i < count($dates); $i++) {
305 305
 										$check = '';
306
-										if ($total_y[$i] - $total_n[$i] == $max_votes) {
306
+										if ($total_y[ $i ] - $total_n[ $i ] == $max_votes) {
307 307
 											$check = 'icon-checkmark';
308 308
 										}
309 309
 										print_unescaped('<td class="win_row ' . $check . '" id="id_total_' . $i . '"></td>');
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
 						<div class="input-group-addon">
335 335
 							<span class="icon-share"></span><?php p($l->t('Link')); ?>
336 336
 						</div>
337
-						<input type="text" value="<?php p($pollUrl);?>" readonly="readonly">
337
+						<input type="text" value="<?php p($pollUrl); ?>" readonly="readonly">
338 338
 					</div>
339 339
 					<?php if ($expired) : ?>
340 340
 						<div id="expired_info">
Please login to merge, or discard this patch.
Braces   +14 added lines, -5 removed lines patch added patch discarded remove patch
@@ -323,7 +323,10 @@  discard block
 block discarded – undo
323 323
 						</form>
324 324
 						<?php if (User::isLoggedIn()) : ?>
325 325
 						<span class="notification">
326
-							<input type="checkbox" id="check_notif" class="checkbox" <?php if ($notification != null) print_unescaped(' checked'); ?> />
326
+							<input type="checkbox" id="check_notif" class="checkbox" <?php if ($notification != null) {
327
+    print_unescaped(' checked');
328
+}
329
+?> />
327 330
 							<label for="check_notif"><?php p($l->t('Receive notification email on activity')); ?></label>
328 331
 						</span>
329 332
 						<?php endif; ?>
@@ -355,8 +358,11 @@  discard block
 block discarded – undo
355 358
 									<a href="<?php p($urlGenerator->linkToRouteAbsolute('core.login.showLoginForm')); ?>"><?php p($l->t('Login')); ?></a>
356 359
 									<?php p($l->t('or')); ?>
357 360
 									<?php print_unescaped('<th id="id_ac_detected" class="external current-user"><input type="text" name="user_name_comm" id="user_name_comm" placeholder="' . $l->t('Your name here') . '" /></th>'); ?>
358
-								<?php else: ?>
359
-									<?php p($l->t('Logged in as') . ' ' . $userId); ?>
361
+								<?php else {
362
+    : ?>
363
+									<?php p($l->t('Logged in as') . ' ' . $userId);
364
+}
365
+?>
360 366
 								<?php endif; ?>
361 367
 									<textarea id="commentBox" name="commentBox"></textarea>
362 368
 									<p>
@@ -390,8 +396,11 @@  discard block
 block discarded – undo
390 396
 									</div>
391 397
 								</div>
392 398
 							<?php endforeach; ?>
393
-						<?php else : ?>
394
-							<?php p($l->t('No comments yet. Be the first.')); ?>
399
+						<?php else {
400
+    : ?>
401
+							<?php p($l->t('No comments yet. Be the first.'));
402
+}
403
+?>
395 404
 						<?php endif; ?>
396 405
 					</div>
397 406
 				</div>
Please login to merge, or discard this patch.
lib/AppInfo/Application.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 		/**
51 51
 		 * Controllers
52 52
 		 */
53
-		$container->registerService('PageController', function ($c) use ($server) {
53
+		$container->registerService('PageController', function($c) use ($server) {
54 54
 			/** @var SimpleContainer $c */
55 55
 			return new PageController(
56 56
 				$c->query('AppName'),
@@ -72,73 +72,73 @@  discard block
 block discarded – undo
72 72
 			);
73 73
 		});
74 74
 
75
-		$container->registerService('UserManager', function ($c) {
75
+		$container->registerService('UserManager', function($c) {
76 76
 			/** @var SimpleContainer $c */
77 77
 			return $c->query('ServerContainer')->getUserManager();
78 78
 		});
79 79
 
80
-		$container->registerService('GroupManager', function ($c) {
80
+		$container->registerService('GroupManager', function($c) {
81 81
 			/** @var SimpleContainer $c */
82 82
 			return $c->query('ServerContainer')->getGroupManager();
83 83
 		});
84 84
 
85
-		$container->registerService('AvatarManager', function ($c) {
85
+		$container->registerService('AvatarManager', function($c) {
86 86
 			/** @var SimpleContainer $c */
87 87
 			return $c->query('ServerContainer')->getAvatarManager();
88 88
 		});
89 89
 
90
-		$container->registerService('Logger', function ($c) {
90
+		$container->registerService('Logger', function($c) {
91 91
 			/** @var SimpleContainer $c */
92 92
 			return $c->query('ServerContainer')->getLogger();
93 93
 		});
94 94
 
95
-		$container->registerService('L10N', function ($c) {
95
+		$container->registerService('L10N', function($c) {
96 96
 			return $c->query('ServerContainer')->getL10N($c->query('AppName'));
97 97
 		});
98 98
 
99
-		$container->registerService('CommentMapper', function ($c) use ($server) {
99
+		$container->registerService('CommentMapper', function($c) use ($server) {
100 100
 			/** @var SimpleContainer $c */
101 101
 			return new CommentMapper(
102 102
 				$server->getDatabaseConnection()
103 103
 			);
104 104
 		});
105 105
 
106
-		$container->registerService('DateMapper', function ($c) use ($server) {
106
+		$container->registerService('DateMapper', function($c) use ($server) {
107 107
 			/** @var SimpleContainer $c */
108 108
 			return new DateMapper(
109 109
 				$server->getDatabaseConnection()
110 110
 			);
111 111
 		});
112 112
 
113
-		$container->registerService('EventMapper', function ($c) use ($server) {
113
+		$container->registerService('EventMapper', function($c) use ($server) {
114 114
 			/** @var SimpleContainer $c */
115 115
 			return new EventMapper(
116 116
 				$server->getDatabaseConnection()
117 117
 			);
118 118
 		});
119 119
 
120
-		$container->registerService('NotificationMapper', function ($c) use ($server) {
120
+		$container->registerService('NotificationMapper', function($c) use ($server) {
121 121
 			/** @var SimpleContainer $c */
122 122
 			return new NotificationMapper(
123 123
 				$server->getDatabaseConnection()
124 124
 			);
125 125
 		});
126 126
 
127
-		$container->registerService('ParticipationMapper', function ($c) use ($server) {
127
+		$container->registerService('ParticipationMapper', function($c) use ($server) {
128 128
 			/** @var SimpleContainer $c */
129 129
 			return new ParticipationMapper(
130 130
 				$server->getDatabaseConnection()
131 131
 			);
132 132
 		});
133 133
 
134
-		$container->registerService('ParticipationTextMapper', function ($c) use ($server) {
134
+		$container->registerService('ParticipationTextMapper', function($c) use ($server) {
135 135
 			/** @var SimpleContainer $c */
136 136
 			return new ParticipationTextMapper(
137 137
 				$server->getDatabaseConnection()
138 138
 			);
139 139
 		});
140 140
 
141
-		$container->registerService('TextMapper', function ($c) use ($server) {
141
+		$container->registerService('TextMapper', function($c) use ($server) {
142 142
 			/** @var SimpleContainer $c */
143 143
 			return new TextMapper(
144 144
 				$server->getDatabaseConnection()
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
 	 */
152 152
 	public function registerNavigationEntry() {
153 153
 		$container = $this->getContainer();
154
-		$container->query('OCP\INavigationManager')->add(function () use ($container) {
154
+		$container->query('OCP\INavigationManager')->add(function() use ($container) {
155 155
 			$urlGenerator = $container->query('OCP\IURLGenerator');
156 156
 			$l10n = $container->query('OCP\IL10N');
157 157
 			return [
Please login to merge, or discard this patch.
lib/Db/ParticipationMapper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	 */
45 45
 	public function findDistinctByUser($userId, $limit = null, $offset = null) {
46 46
 		$sql = 'SELECT DISTINCT * FROM ' . $this->getTableName() . ' WHERE user_id = ?';
47
-		return $this->findEntities($sql, [$userId], $limit, $offset);
47
+		return $this->findEntities($sql, [ $userId ], $limit, $offset);
48 48
 	}
49 49
 
50 50
 	/**
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 	 */
56 56
 	public function findByPoll($pollId, $limit = null, $offset = null) {
57 57
 		$sql = 'SELECT * FROM ' . $this->getTableName() . ' WHERE poll_id = ?';
58
-		return $this->findEntities($sql, [$pollId], $limit, $offset);
58
+		return $this->findEntities($sql, [ $pollId ], $limit, $offset);
59 59
 	}
60 60
 
61 61
 	/**
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 	 */
64 64
 	public function deleteByPoll($pollId) {
65 65
 		$sql = 'DELETE FROM ' . $this->getTableName() . ' WHERE poll_id = ?';
66
-		$this->execute($sql, [$pollId]);
66
+		$this->execute($sql, [ $pollId ]);
67 67
 	}
68 68
 
69 69
 	/**
@@ -72,6 +72,6 @@  discard block
 block discarded – undo
72 72
 	 */
73 73
 	public function deleteByPollAndUser($pollId, $userId) {
74 74
 		$sql = 'DELETE FROM ' . $this->getTableName() . ' WHERE poll_id = ? AND user_id = ?';
75
-		$this->execute($sql, [$pollId, $userId]);
75
+		$this->execute($sql, [ $pollId, $userId ]);
76 76
 	}
77 77
 }
Please login to merge, or discard this patch.
lib/Db/NotificationMapper.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 	 */
41 41
 	public function find($id) {
42 42
 		$sql = 'SELECT * FROM ' . $this->getTableName() . ' WHERE id = ?';
43
-		return $this->findEntity($sql, [$id]);
43
+		return $this->findEntity($sql, [ $id ]);
44 44
 	}
45 45
 
46 46
 	/**
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 	 */
54 54
 	public function findBetween($userId, $from, $until, $limit = null, $offset = null) {
55 55
 		$sql = 'SELECT * FROM ' . $this->getTableName() . ' WHERE userId = ? AND timestamp BETWEEN ? AND ?';
56
-		return $this->findEntities($sql, [$userId, $from, $until], $limit, $offset);
56
+		return $this->findEntities($sql, [ $userId, $from, $until ], $limit, $offset);
57 57
 	}
58 58
 
59 59
 	/**
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 	 */
64 64
 	public function findAll($limit = null, $offset = null) {
65 65
 		$sql = 'SELECT * FROM ' . $this->getTableName();
66
-		return $this->findEntities($sql, [], $limit, $offset);
66
+		return $this->findEntities($sql, [ ], $limit, $offset);
67 67
 	}
68 68
 
69 69
 	/**
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 	 */
75 75
 	public function findAllByPoll($pollId, $limit = null, $offset = null) {
76 76
 		$sql = 'SELECT * FROM ' . $this->getTableName() . ' WHERE poll_id = ?';
77
-		return $this->findEntities($sql, [$pollId], $limit, $offset);
77
+		return $this->findEntities($sql, [ $pollId ], $limit, $offset);
78 78
 	}
79 79
 
80 80
 	/**
@@ -84,6 +84,6 @@  discard block
 block discarded – undo
84 84
 	 */
85 85
 	public function findByUserAndPoll($pollId, $userId) {
86 86
 		$sql = 'SELECT * FROM ' . $this->getTableName() . ' WHERE poll_id = ? AND user_id = ?';
87
-		return $this->findEntity($sql, [$pollId, $userId]);
87
+		return $this->findEntity($sql, [ $pollId, $userId ]);
88 88
 	}
89 89
 }
Please login to merge, or discard this patch.
lib/Db/TextMapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	 */
45 45
 	public function findByPoll($pollId, $limit = null, $offset = null) {
46 46
 		$sql = 'SELECT * FROM ' . $this->getTableName() . ' WHERE poll_id = ?';
47
-		return $this->findEntities($sql, [$pollId], $limit, $offset);
47
+		return $this->findEntities($sql, [ $pollId ], $limit, $offset);
48 48
 	}
49 49
 
50 50
 	/**
@@ -52,6 +52,6 @@  discard block
 block discarded – undo
52 52
 	 */
53 53
 	public function deleteByPoll($pollId) {
54 54
 		$sql = 'DELETE FROM ' . $this->getTableName() . ' WHERE poll_id = ?';
55
-		$this->execute($sql, [$pollId]);
55
+		$this->execute($sql, [ $pollId ]);
56 56
 	}
57 57
 }
Please login to merge, or discard this patch.
lib/Db/EventMapper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	 */
45 45
 	public function find($id) {
46 46
 		$sql = 'SELECT * FROM ' . $this->getTableName() . ' WHERE id = ?';
47
-		return $this->findEntity($sql, [$id]);
47
+		return $this->findEntity($sql, [ $id ]);
48 48
 	}
49 49
 
50 50
 	/**
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 	 */
56 56
 	public function findByHash($hash, $limit = null, $offset = null) {
57 57
 		$sql = 'SELECT * FROM ' . $this->getTableName() . ' WHERE hash = ?';
58
-		return $this->findEntity($sql, [$hash], $limit, $offset);
58
+		return $this->findEntity($sql, [ $hash ], $limit, $offset);
59 59
 	}
60 60
 
61 61
 	/**
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	 */
67 67
 	public function findAllForUser($userId, $limit = null, $offset = null) {
68 68
 		$sql = 'SELECT * FROM ' . $this->getTableName() . ' WHERE owner = ?';
69
-		return $this->findEntities($sql, [$userId], $limit, $offset);
69
+		return $this->findEntities($sql, [ $userId ], $limit, $offset);
70 70
 	}
71 71
 
72 72
 	/**
@@ -101,6 +101,6 @@  discard block
 block discarded – undo
101 101
 					OR
102 102
 					*PREFIX*polls_comments.user_id = ?
103 103
 					ORDER BY created';
104
-		return $this->findEntities($sql, ['hidden', $userId, 'hidden', $userId, $userId], $limit, $offset);
104
+		return $this->findEntities($sql, [ 'hidden', $userId, 'hidden', $userId, $userId ], $limit, $offset);
105 105
 	}
106 106
 }
Please login to merge, or discard this patch.
lib/Db/ParticipationTextMapper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	 */
45 45
 	public function findByPoll($pollId, $limit = null, $offset = null) {
46 46
 		$sql = 'SELECT * FROM ' . $this->getTableName() . ' WHERE poll_id = ?';
47
-		return $this->findEntities($sql, [$pollId], $limit, $offset);
47
+		return $this->findEntities($sql, [ $pollId ], $limit, $offset);
48 48
 	}
49 49
 
50 50
 	/**
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 	 */
56 56
 	public function findDistinctByUser($userId, $limit = null, $offset = null) {
57 57
 		$sql = 'SELECT DISTINCT * FROM ' . $this->getTableName() . ' WHERE user_id = ?';
58
-		return $this->findEntities($sql, [$userId], $limit, $offset);
58
+		return $this->findEntities($sql, [ $userId ], $limit, $offset);
59 59
 	}
60 60
 
61 61
 	/**
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 	 */
64 64
 	public function deleteByPoll($pollId) {
65 65
 		$sql = 'DELETE FROM ' . $this->getTableName() . ' WHERE poll_id = ?';
66
-		$this->execute($sql, [$pollId]);
66
+		$this->execute($sql, [ $pollId ]);
67 67
 	}
68 68
 
69 69
 	/**
@@ -72,6 +72,6 @@  discard block
 block discarded – undo
72 72
 	 */
73 73
 	public function deleteByPollAndUser($pollId, $userId) {
74 74
 		$sql = 'DELETE FROM ' . $this->getTableName() . ' WHERE poll_id = ? AND user_id = ?';
75
-		$this->execute($sql, [$pollId, $userId]);
75
+		$this->execute($sql, [ $pollId, $userId ]);
76 76
 	}
77 77
 }
Please login to merge, or discard this patch.