Blame view

sources/apps/notify/templates/personalSettings.php 977 Bytes
42e4f8d60   Kload   add all apps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  <form id="notify">
  	<fieldset class="personalblock">
  		<p><strong><?php p($l->t('Notifications')); ?></strong></p>
  		<table class="notificationClassesTable">
  			<thead>
  				<th><input type="checkbox" name="notify-block-all" id="notify-block-all" /><label for="notify-block-all"</th>
  				<th><?php p($l->t('App Name')); ?></th>
  				<th><?php p($l->t('Summary')); ?></th>
  			</thead>
  			<tbody>
  			<?php foreach($_['classes'] as $cid => $class): ?>
  				<tr class="notificationClass<?php p(($class['blocked'] ? ' notify-blocked' : '')); ?>" data-notify-class-id="<?php p($cid); ?>">
  					<td><input type="checkbox" name="notify-block[<?php p($cid); ?>]" id="notify-block[<?php p($cid); ?>]"<?php p(($class['blocked'] ? ' checked="checked"' : '')); ?> /></td>
  					<td class="notify-appname"><?php p($l->t($class['appName'])); ?></td>
  					<td class="notify-summary"><?php p($class['summary']); ?></td>
  				</tr>
  			<?php endforeach; ?>
  			</tbody>
  		</table>
  	</fieldset>
  </form>