Файл: adultscript-2.0.3-pro/files/templates/defboot/user_notifications.tpl.php
Строк: 100
<?php defined('_VALID') or die('Restricted Access!'); ?>
<?php echo $this->fetch('_user_header'); ?>
<form id="edit-notifications-form" class="form-horizontal" method="post" action="<?php echo REL_URL; ?>/user/notifications/">
<p class="lead"><?php echo __('notifications-help'); ?></p>
<div class="form-group">
<div class="col-sm-9">
<label class="checkbox-inline"><input name="video_approve" type="checkbox" id="video_approve"<?php if ($this->notifs['video_approve'] == '1'): echo ' checked="checked"'; endif; ?>"><?php echo __('notification-video-approve'); ?></label>
</div>
</div>
<div class="form-group">
<div class="col-sm-9">
<label class="checkbox-inline"><input name="video_comment" type="checkbox" id="video_comment"<?php if ($this->notifs['video_comment'] == '1'): echo ' checked="checked"'; endif; ?>"><?php echo __('notification-video-comment'); ?></label>
</div>
</div>
<div class="form-group">
<div class="col-sm-9">
<label class="checkbox-inline"><input name="video_rating" type="checkbox" id="video_rating"<?php if ($this->notifs['video_rating'] == '1'): echo ' checked="checked"'; endif; ?>"><?php echo __('notification-video-rating'); ?></label>
</div>
</div>
<div class="form-group">
<div class="col-sm-9">
<label class="checkbox-inline"><input name="subscription" type="checkbox" id="subscription"<?php if ($this->notifs['subscription'] == '1'): echo ' checked="checked"'; endif; ?>"><?php echo __('notification-subscribes'); ?></label>
</div>
</div>
<div class="form-group">
<div class="col-sm-9">
<label class="checkbox-inline"><input name="friend_request" type="checkbox" id="friend_request"<?php if ($this->notifs['friend_request'] == '1'): echo ' checked="checked"'; endif; ?>"><?php echo __('notification-friend-request'); ?></label>
</div>
</div>
<div class="form-group">
<div class="col-sm-9">
<label class="checkbox-inline"><input name="friend_approve" type="checkbox" id="friend_approve"<?php if ($this->notifs['friend_approve'] == '1'): echo ' checked="checked"'; endif; ?>"><?php echo __('notification-friend'); ?></label>
</div>
</div>
<div class="form-group">
<div class="col-sm-9">
<label class="checkbox-inline"><input name="new_message" type="checkbox" id="new_message"<?php if ($this->notifs['new_message'] == '1'): echo ' checked="checked"'; endif; ?>"><?php echo __('notification-message'); ?></label>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button name="submit_notifications_edit" id="submit-notifications-edit" class="btn btn-lg btn-default"><?php echo __('notifications-update'); ?></button>
</div>
</div>
</form>
</div>
<?php echo $this->fetch('_user_footer'); ?>