GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — 7.x-1.x ( 5d3975...17390b )
by Devin
02:44
created
modules/df/df_tools/df_tools_color/df_tools_color.module 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -52,10 +52,10 @@  discard block
 block discarded – undo
52 52
   $css = '';
53 53
   foreach ($colors as $color) {
54 54
     foreach ($color[1] as $rule) {
55
-      $new_css = $rule[0] . '{' . $rule[1] . ':' . $color[0] . '}';
55
+      $new_css = $rule[0].'{'.$rule[1].':'.$color[0].'}';
56 56
       // Add an extra wrapper for media queries
57 57
       if (isset($rule[2])) {
58
-        $new_css = $rule[2] . '{' . $new_css . '}';
58
+        $new_css = $rule[2].'{'.$new_css.'}';
59 59
       }
60 60
       $css .= $new_css;
61 61
     }
@@ -170,15 +170,15 @@  discard block
 block discarded – undo
170 170
       ),
171 171
       '#attached' => array(
172 172
         'js' => array(
173
-          libraries_get_path('css.js') . '/css.js',
174
-          libraries_get_path('spectrum') . '/spectrum.js',
175
-          libraries_get_path('html2canvas') . '/dist/html2canvas.min.js',
176
-          libraries_get_path('color-thief') . '/src/color-thief.js',
177
-          $path . '/js/df_tools_color.js'
173
+          libraries_get_path('css.js').'/css.js',
174
+          libraries_get_path('spectrum').'/spectrum.js',
175
+          libraries_get_path('html2canvas').'/dist/html2canvas.min.js',
176
+          libraries_get_path('color-thief').'/src/color-thief.js',
177
+          $path.'/js/df_tools_color.js'
178 178
         ),
179 179
         'css' => array(
180
-          libraries_get_path('spectrum') . '/spectrum.css',
181
-          $path . '/css/df_tools_color.css'
180
+          libraries_get_path('spectrum').'/spectrum.css',
181
+          $path.'/css/df_tools_color.css'
182 182
         ),
183 183
       ),
184 184
       '#weight' => 200,
Please login to merge, or discard this patch.
df/df_tools/df_tools_video_slideshow/df_tools_video_slideshow.module 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@  discard block
 block discarded – undo
13 13
 function df_tools_video_slideshow_views_pre_render(&$view) {
14 14
   if ($view->name == 'video_slideshow') {
15 15
     $path = drupal_get_path('module', 'df_tools_video_slideshow');
16
-    drupal_add_css($path . '/css/df_tools_video_slideshow.css');
17
-    drupal_add_Js($path . '/js/df_tools_video_slideshow.js');
16
+    drupal_add_css($path.'/css/df_tools_video_slideshow.css');
17
+    drupal_add_Js($path.'/js/df_tools_video_slideshow.js');
18 18
   }
19 19
 }
20 20
 
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
  */
24 24
 function df_tools_video_slideshow_preprocess_views_slideshow(&$variables) {
25 25
   if ($variables['view']->name == 'video_slideshow') {
26
-    $variables['slideshow'] = '<div class="views_slideshow_cycle_main_wrapper">' . $variables['slideshow'] . '</div>';
27
-    $variables['bottom_widget_rendered'] = '<div class="views-slideshow-pager-button views-slideshow-pager-previous"></div><div class="widget_pager_bottom_wrapper">' . $variables['bottom_widget_rendered'] . '</div><div class="views-slideshow-pager-button views-slideshow-pager-next"></div>';
26
+    $variables['slideshow'] = '<div class="views_slideshow_cycle_main_wrapper">'.$variables['slideshow'].'</div>';
27
+    $variables['bottom_widget_rendered'] = '<div class="views-slideshow-pager-button views-slideshow-pager-previous"></div><div class="widget_pager_bottom_wrapper">'.$variables['bottom_widget_rendered'].'</div><div class="views-slideshow-pager-button views-slideshow-pager-next"></div>';
28 28
   }
29 29
 }
Please login to merge, or discard this patch.
modules/df/df_tools/df_tools_slideshow/df_tools_slideshow.module 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -119,10 +119,10 @@  discard block
 block discarded – undo
119 119
  * Implements hook_lightning_fpp_types().
120 120
  */
121 121
 function df_tools_slideshow_lightning_fpp_types_alter(&$types) {
122
-  $icon_path = drupal_get_path('module', 'df_tools_slideshow') . '/images/';
122
+  $icon_path = drupal_get_path('module', 'df_tools_slideshow').'/images/';
123 123
   $types['slideshow'] = array(
124 124
     'title' => 'slideshow',
125
-    'icon' => $icon_path . 'icon_slideshow.png',
125
+    'icon' => $icon_path.'icon_slideshow.png',
126 126
     'path' => 'slideshow',
127 127
   );
128 128
 }
@@ -132,17 +132,17 @@  discard block
 block discarded – undo
132 132
  */
133 133
 function df_tools_slideshow_form_after_build($form) {
134 134
   // Make the previews for media images larger than the default media_thumbnail
135
-  for ($i=0; $i<=max(array_keys($form['field_media'][LANGUAGE_NONE])); ++$i) {
135
+  for ($i = 0; $i <= max(array_keys($form['field_media'][LANGUAGE_NONE])); ++$i) {
136 136
     // The slick image style is provided by the slick module, and formats images to match hero proportions
137 137
     // We do not currently use this image style as the default for the slideshow fpp
138 138
     $form['field_media'][LANGUAGE_NONE][$i]['preview']['content']['#image_style'] = 'slick';
139 139
   }
140 140
   // Remove the formatting tips for the text fields
141
-  for ($i=0; $i<=max(array_keys($form['field_body'][LANGUAGE_NONE])); ++$i) {
141
+  for ($i = 0; $i <= max(array_keys($form['field_body'][LANGUAGE_NONE])); ++$i) {
142 142
     unset($form['field_body'][LANGUAGE_NONE][$i]['format']['help']);
143 143
     unset($form['field_body'][LANGUAGE_NONE][$i]['format']['guidelines']);
144 144
   }
145
-  for ($i=0; $i<=max(array_keys($form['field_title'][LANGUAGE_NONE])); ++$i) {
145
+  for ($i = 0; $i <= max(array_keys($form['field_title'][LANGUAGE_NONE])); ++$i) {
146 146
     unset($form['field_title'][LANGUAGE_NONE][$i]['format']['help']);
147 147
     unset($form['field_title'][LANGUAGE_NONE][$i]['format']['guidelines']);
148 148
   }
Please login to merge, or discard this patch.
modules/df/df_tools/df_tools_moderation/df_tools_moderation.module 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
     $node->revision = 1;
57 57
     $node->workbench_moderation_state_new = 'draft';
58 58
     node_save($node);
59
-    drupal_goto('/node/' . $node->nid . '/draft');
59
+    drupal_goto('/node/'.$node->nid.'/draft');
60 60
   }
61 61
   // Return the standard workbench node edit form.
62 62
   else {
Please login to merge, or discard this patch.
modules/df/df_translate/df_translate.base.nodes.translations.inc 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,10 +23,10 @@
 block discarded – undo
23 23
       MigrateDestinationNode::getKeySchema()
24 24
     );
25 25
 
26
-    $import_path = drupal_get_path('module', 'df_translate') . '/import/';
26
+    $import_path = drupal_get_path('module', 'df_translate').'/import/';
27 27
 
28 28
     // Create a MigrateSource object.
29
-    $this->source = new MigrateSourceCSV($import_path . 'df_translate.base.nodes.translations.csv', $this->csvcolumns(), array('header_rows' => 1));
29
+    $this->source = new MigrateSourceCSV($import_path.'df_translate.base.nodes.translations.csv', $this->csvcolumns(), array('header_rows' => 1));
30 30
 
31 31
     $this->destination = new MigrateDestinationNode('page');
32 32
 
Please login to merge, or discard this patch.
modules/df/df_search/df_search.module 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@
 block discarded – undo
10 10
 function df_search_js_alter(&$javascript) {
11 11
   // Replace the default jQuery autocomplete JS bundled with Search Autocomplete
12 12
   // with a version that supports closing the autocomplete using a button.
13
-  $path = drupal_get_path('module', 'search_autocomplete') . '/js/jquery.autocomplete.js';
13
+  $path = drupal_get_path('module', 'search_autocomplete').'/js/jquery.autocomplete.js';
14 14
 
15 15
   if (isset($javascript[$path])) {
16
-    drupal_add_js(drupal_get_path('module', 'df_search') . '/js/jquery.autocomplete.js');
16
+    drupal_add_js(drupal_get_path('module', 'df_search').'/js/jquery.autocomplete.js');
17 17
   }
18 18
 }
Please login to merge, or discard this patch.
modules/df/df_commerce/df_commerce.base.products.inc 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@  discard block
 block discarded – undo
26 26
     $this->destination = new MigrateDestinationEntityAPI('commerce_product', 'product');
27 27
 
28 28
     // Define a default import path.
29
-    $import_path = drupal_get_path('module', 'df_commerce') . '/import/';
29
+    $import_path = drupal_get_path('module', 'df_commerce').'/import/';
30 30
     
31 31
     // Create a MigrateSource object.
32
-    $this->source = new MigrateSourceCSV($import_path . 'df_commerce.base.products.csv', $this->csvcolumns(), array('header_rows' => 1));
32
+    $this->source = new MigrateSourceCSV($import_path.'df_commerce.base.products.csv', $this->csvcolumns(), array('header_rows' => 1));
33 33
 
34 34
     $this->addFieldMapping('title', 'title');
35 35
     $this->addFieldMapping('sku', 'sku');
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     // Images
39 39
     $this->addFieldMapping('field_images', 'images');
40 40
     $this->addFieldMapping('field_images:file_replace')->defaultValue(FILE_EXISTS_REPLACE);
41
-    $this->addFieldMapping('field_images:source_dir')->defaultValue($import_path . 'images');
41
+    $this->addFieldMapping('field_images:source_dir')->defaultValue($import_path.'images');
42 42
     $this->addFieldMapping('field_images:destination_file', 'filename');
43 43
 
44 44
     $this->addFieldMapping('uid', 'uid');
Please login to merge, or discard this patch.
modules/df/df_commerce/df_commerce.base.nodes.commerce.inc 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
       MigrateDestinationNode::getKeySchema()
24 24
     );
25 25
 
26
-    $import_path = drupal_get_path('module', 'df_commerce') . '/import/';
27
-    $this->source = new MigrateSourceCSV($import_path . 'df_commerce.base.nodes.commerce.csv', $this->csvcolumns(), array('header_rows' => 1));
26
+    $import_path = drupal_get_path('module', 'df_commerce').'/import/';
27
+    $this->source = new MigrateSourceCSV($import_path.'df_commerce.base.nodes.commerce.csv', $this->csvcolumns(), array('header_rows' => 1));
28 28
 
29 29
     $this->destination = new MigrateDestinationNode('commerce');
30 30
 
Please login to merge, or discard this patch.
modules/df/df_engage/df_engage.terms.site_section.inc 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 
10 10
   public function __construct($arguments) {
11 11
     parent::__construct($arguments);
12
-    $import_path = drupal_get_path('module', 'df_engage') . '/import/';
13
-    $this->source = new MigrateSourceCSV($import_path . 'df_engage.terms.site_section.csv', $this->csvcolumns(), array('header_rows' => 1));
12
+    $import_path = drupal_get_path('module', 'df_engage').'/import/';
13
+    $this->source = new MigrateSourceCSV($import_path.'df_engage.terms.site_section.csv', $this->csvcolumns(), array('header_rows' => 1));
14 14
     $this->destination = new MigrateDestinationTerm('site_section');
15 15
     $this->addFieldMapping('name', 'name');
16 16
   }
Please login to merge, or discard this patch.