Completed
Pull Request — dev (#76)
by Sarah
02:56 queued 32s
created
views/widgets/dataSaved.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <!-- check if flash message exists -->
2
-<?php if(Yii::$app->getSession()->hasFlash('data-saved')): ?>
2
+<?php if (Yii::$app->getSession()->hasFlash('data-saved')): ?>
3 3
 
4 4
     <script type="text/javascript">
5 5
         $(function() {
Please login to merge, or discard this patch.
views/friendship/manage/sent-requests.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@
 block discarded – undo
22 22
                 'header' => 'Actions',
23 23
                 'class' => 'yii\grid\ActionColumn',
24 24
                 'buttons' => [
25
-                    'update' => function () {
25
+                    'update' => function() {
26 26
                         return;
27 27
                     },
28
-                    'view' => function () {
28
+                    'view' => function() {
29 29
                         return;
30 30
                     },
31 31
                     'delete' => function($url, $model) {
Please login to merge, or discard this patch.
views/comment/widgets/link.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 
6 6
 $commentCount = $this->context->getCommentsCount();
7 7
 $hasComments = ($commentCount > 0);
8
-$commentCountSpan = Html::tag('span', ' ('.$commentCount.')', [
8
+$commentCountSpan = Html::tag('span', ' (' . $commentCount . ')', [
9 9
     'class' => 'comment-count',
10 10
     'data-count' => $commentCount,
11 11
     'style' => ($hasComments) ? null : 'display:none'
@@ -15,10 +15,10 @@  discard block
 block discarded – undo
15 15
 <?php if ($mode == \humhub\modules\comment\widgets\CommentLink::MODE_POPUP): ?>
16 16
     <?php $url = Url::to(['/comment/comment/show', 'contentModel' => $objectModel, 'contentId' => $objectId, 'mode' => 'popup']); ?>
17 17
     <a href="#" data-action-click="ui.modal.load" data-action-url="<?= $url ?>">
18
-        <?= Yii::t('CommentModule.widgets_views_link', "Comment").'('.$this->context->getCommentsCount().')' ?>
18
+        <?= Yii::t('CommentModule.widgets_views_link', "Comment") . '(' . $this->context->getCommentsCount() . ')' ?>
19 19
     </a>
20
-<?php elseif(Yii::$app->user->isGuest): ?>
21
-    <?= Html::a(Yii::t('CommentModule.widgets_views_link', "Comment").$commentCountSpan, Yii::$app->user->loginUrl, ['data-target' => '#globalModal']) ?>
20
+<?php elseif (Yii::$app->user->isGuest): ?>
21
+    <?= Html::a(Yii::t('CommentModule.widgets_views_link', "Comment") . $commentCountSpan, Yii::$app->user->loginUrl, ['data-target' => '#globalModal']) ?>
22 22
 <?php else : ?>
23
-    <?= Html::a(Yii::t('CommentModule.widgets_views_link', "Comment").$commentCountSpan, "#",['onClick' => "$('#comment_" . $id . "').slideToggle('fast');$('#newCommentForm_" . $id . "').focus();return false;"]); ?>
23
+    <?= Html::a(Yii::t('CommentModule.widgets_views_link', "Comment") . $commentCountSpan, "#", ['onClick' => "$('#comment_" . $id . "').slideToggle('fast');$('#newCommentForm_" . $id . "').focus();return false;"]); ?>
24 24
 <?php endif; ?>
25 25
\ No newline at end of file
Please login to merge, or discard this patch.
views/comment/widgets/form.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
             'id' => 'comment_create_upload_' . $id,
25 25
             'progress' => '#comment_create_upload_progress_' . $id,
26 26
             'preview' => '#comment_create_upload_preview_' . $id,
27
-            'dropZone' => '#comment_create_form_'.$id,
27
+            'dropZone' => '#comment_create_form_' . $id,
28 28
             'max' => Yii::$app->getModule('content')->maxAttachedFiles
29 29
         ]);
30 30
         ?>
Please login to merge, or discard this patch.
views/comment/comment/edit.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
     <?=
14 14
 	humhub\widgets\RichtextField::widget([
15
-        'id' => 'comment_input_'.$comment->id,
15
+        'id' => 'comment_input_' . $comment->id,
16 16
         'placeholder' => Yii::t('CommentModule.views_edit', 'Edit your comment...'),
17 17
         'model' => $comment,
18 18
         'attribute' => 'message'
@@ -25,9 +25,9 @@  discard block
 block discarded – undo
25 25
         \humhub\modules\file\widgets\UploadButton::widget([
26 26
             'id' => 'comment_upload_' . $comment->id,
27 27
             'model' => $comment,
28
-            'dropZone' => '#comment_'.$comment->id,
29
-            'preview' => '#comment_upload_preview_'.$comment->id,
30
-            'progress' => '#comment_upload_progress_'.$comment->id,
28
+            'dropZone' => '#comment_' . $comment->id,
29
+            'preview' => '#comment_upload_preview_' . $comment->id,
30
+            'progress' => '#comment_upload_progress_' . $comment->id,
31 31
             'max' => Yii::$app->getModule('content')->maxAttachedFiles
32 32
         ]);
33 33
         ?>
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
     <?=
49 49
 	\humhub\modules\file\widgets\FilePreview::widget([
50
-        'id' => 'comment_upload_preview_'.$comment->id,
50
+        'id' => 'comment_upload_preview_' . $comment->id,
51 51
         'options' => ['style' => 'margin-top:10px'],
52 52
         'model' => $comment,
53 53
         'edit' => true
Please login to merge, or discard this patch.
views/user/profile/home.php 1 patch
Spacing   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,10 +7,8 @@
 block discarded – undo
7 7
     'contentContainer' => $user,
8 8
     'streamAction' => '//user/profile/stream',
9 9
     'messageStreamEmpty' => ($user->permissionManager->can(new \humhub\modules\post\permissions\CreatePost())) ?
10
-            Yii::t('UserModule.views_profile_index', '<b>Your profile stream is still empty</b><br>Get started and post something...') :
11
-            Yii::t('UserModule.views_profile_index', '<b>This profile stream is still empty!</b>'),
10
+            Yii::t('UserModule.views_profile_index', '<b>Your profile stream is still empty</b><br>Get started and post something...') : Yii::t('UserModule.views_profile_index', '<b>This profile stream is still empty!</b>'),
12 11
     'messageStreamEmptyCss' => ($user->permissionManager->can(new \humhub\modules\post\permissions\CreatePost())) ?
13
-            'placeholder-empty-stream' :
14
-            '',
12
+            'placeholder-empty-stream' : '',
15 13
 ));
16 14
 ?>
17 15
\ No newline at end of file
Please login to merge, or discard this patch.
views/mail/layouts/html.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
         <title><?php echo Html::encode(Yii::$app->name); ?></title>
16 16
         <link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700' rel='stylesheet' type='text/css'>
17 17
             <style type="text/css">
18
-                <?php $defaultBackground =  Yii::$app->view->theme->variable('background-color-main', '#fff') ?>
19
-                <?php $colorPrimary =  Yii::$app->view->theme->variable('primary', '#708fa0') ?>
18
+                <?php $defaultBackground = Yii::$app->view->theme->variable('background-color-main', '#fff') ?>
19
+                <?php $colorPrimary = Yii::$app->view->theme->variable('primary', '#708fa0') ?>
20 20
                 
21 21
                 .ReadMsgBody {
22 22
                     width: 100%;
Please login to merge, or discard this patch.
views/layouts/main.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
                     <a data-toggle="modal" data-target="#aside" class="navbar-item pull-left visible-xs visible-sm waves"><i class="material-icons">menu</i></a>
86 86
                     <ul class="nav nav-sm navbar-tool pull-right">
87 87
                         <?= \humhub\widgets\TopMenuRightStack::widget(); ?>
88
-                            <?= \humhub\widgets\NotificationArea::widget([ 'widgets'=> [ [\humhub\modules\notification\widgets\Overview::className(), [], ['sortOrder' => 10]], ]]); ?>
88
+                            <?= \humhub\widgets\NotificationArea::widget(['widgets'=> [[\humhub\modules\notification\widgets\Overview::className(), [], ['sortOrder' => 10]], ]]); ?>
89 89
 
90 90
                             <?=\ humhub\modules\space\widgets\Chooser::widget(); ?>
91 91
                     </ul>
Please login to merge, or discard this patch.
views/content/widgets/visibilityLink.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 ?>
8 8
 <li>
9
-    <?php if($content->isPrivate()) :?>
9
+    <?php if ($content->isPrivate()) :?>
10 10
         <a href="#"  class="makePublicLink" data-action-click="toggleVisibility" data-action-url="<?= $toggleLink ?>">
11 11
             <i class="fa fa-unlock makePublic"></i> <?= Yii::t('ContentModule.widgets_views_contentForm', 'Make public') ?>
12 12
         </a>
Please login to merge, or discard this patch.