@@ -10,13 +10,13 @@ |
||
10 | 10 | foreach ($geofield_map as $entity_type_id => $fields) { |
11 | 11 | foreach ($fields as $field_name => $info) { |
12 | 12 | $args = array('@field_name' => $field_name); |
13 | - $data_key = $entity_type_id . '__' . $field_name; |
|
13 | + $data_key = $entity_type_id.'__'.$field_name; |
|
14 | 14 | |
15 | 15 | $field_coordinates_table_data = $data[$data_key][$field_name]; |
16 | - $data[$data_key][$data_key . '_simple_proximity'] = [ |
|
16 | + $data[$data_key][$data_key.'_simple_proximity'] = [ |
|
17 | 17 | 'group' => 'Content', |
18 | 18 | 'title' => t('Simple Proximity (@field_name)', $args), |
19 | - 'title short' => $field_coordinates_table_data['title short'] . t(' Simple Proximity'), |
|
19 | + 'title short' => $field_coordinates_table_data['title short'].t(' Simple Proximity'), |
|
20 | 20 | 'help' => $field_coordinates_table_data['help'], |
21 | 21 | 'real field' => $field_name, |
22 | 22 | 'filter' => [ |
@@ -56,9 +56,9 @@ discard block |
||
56 | 56 | // Don't show this element in the context of an admin menu. |
57 | 57 | if (!isset($form['admin_label'])) { |
58 | 58 | $form['value']['#suffix'] = |
59 | - '<a class="simple-proximity-location-button button" title="' . $this->t('Use your current location') . '">' . |
|
60 | - ' <i class="fa fa-map-marker" aria-hidden="true"></i>' . |
|
61 | - '</a>' . $form['value']['#suffix']; |
|
59 | + '<a class="simple-proximity-location-button button" title="'.$this->t('Use your current location').'">'. |
|
60 | + ' <i class="fa fa-map-marker" aria-hidden="true"></i>'. |
|
61 | + '</a>'.$form['value']['#suffix']; |
|
62 | 62 | $form['value']['#attached'] = ['library' => ['df_tools_map/main']]; |
63 | 63 | } |
64 | 64 | } |
@@ -109,15 +109,15 @@ discard block |
||
109 | 109 | |
110 | 110 | // Geocode the location if it's present. |
111 | 111 | if (!empty($location)) { |
112 | - if ($collection = \Drupal::service('geocoder')->geocode($location,['googlemaps'])) { |
|
112 | + if ($collection = \Drupal::service('geocoder')->geocode($location, ['googlemaps'])) { |
|
113 | 113 | $coordinates = $collection->first()->getCoordinates(); |
114 | 114 | |
115 | 115 | // Generate a distance formula programatically. |
116 | 116 | $haversine_options = [ |
117 | 117 | 'origin_latitude' => $coordinates->getLatitude(), |
118 | 118 | 'origin_longitude' => $coordinates->getLongitude(), |
119 | - 'destination_latitude' => $this->table . '.' . $this->realField . '_lat', |
|
120 | - 'destination_longitude' => $this->table . '.' . $this->realField . '_lon', |
|
119 | + 'destination_latitude' => $this->table.'.'.$this->realField.'_lat', |
|
120 | + 'destination_longitude' => $this->table.'.'.$this->realField.'_lon', |
|
121 | 121 | 'earth_radius' => GEOFIELD_KILOMETERS, |
122 | 122 | ]; |
123 | 123 | |
@@ -125,13 +125,13 @@ discard block |
||
125 | 125 | |
126 | 126 | /** @var \Drupal\views\Plugin\views\query\Sql $query */ |
127 | 127 | $query = $this->query; |
128 | - $query->addOrderBy(NULL, $formula, 'ASC', $this->table . '_simple_proximity'); |
|
128 | + $query->addOrderBy(NULL, $formula, 'ASC', $this->table.'_simple_proximity'); |
|
129 | 129 | |
130 | 130 | // Add a where expression if a distance is used. |
131 | 131 | if ($this->options['expose']['distance']) { |
132 | 132 | $distance = $this->options['expose']['distance']; |
133 | - $placeholder = $query->placeholder($this->table . '_simple_proximity'); |
|
134 | - $query->addWhereExpression(0, '(' . $formula . ' <= ' . $placeholder . ')', [$placeholder => $distance]); |
|
133 | + $placeholder = $query->placeholder($this->table.'_simple_proximity'); |
|
134 | + $query->addWhereExpression(0, '('.$formula.' <= '.$placeholder.')', [$placeholder => $distance]); |
|
135 | 135 | } |
136 | 136 | } |
137 | 137 | } |
@@ -149,10 +149,10 @@ discard block |
||
149 | 149 | |
150 | 150 | foreach ($options as $key => $option) { |
151 | 151 | if (is_numeric($option)) { |
152 | - $formula = str_replace(':' . $key, $option, $formula); |
|
152 | + $formula = str_replace(':'.$key, $option, $formula); |
|
153 | 153 | } |
154 | 154 | else { |
155 | - $formula = str_replace(':' . $key, db_escape_field($option), $formula); |
|
155 | + $formula = str_replace(':'.$key, db_escape_field($option), $formula); |
|
156 | 156 | } |
157 | 157 | } |
158 | 158 |
@@ -102,8 +102,7 @@ discard block |
||
102 | 102 | $this->ensureMyTable(); |
103 | 103 | if (is_array($this->value)) { |
104 | 104 | $location = $this->value[0]; |
105 | - } |
|
106 | - else { |
|
105 | + } else { |
|
107 | 106 | $location = $this->value; |
108 | 107 | } |
109 | 108 | |
@@ -150,8 +149,7 @@ discard block |
||
150 | 149 | foreach ($options as $key => $option) { |
151 | 150 | if (is_numeric($option)) { |
152 | 151 | $formula = str_replace(':' . $key, $option, $formula); |
153 | - } |
|
154 | - else { |
|
152 | + } else { |
|
155 | 153 | $formula = str_replace(':' . $key, db_escape_field($option), $formula); |
156 | 154 | } |
157 | 155 | } |
@@ -142,7 +142,7 @@ |
||
142 | 142 | * |
143 | 143 | * @param $options |
144 | 144 | * |
145 | - * @return mixed|string |
|
145 | + * @return string |
|
146 | 146 | */ |
147 | 147 | protected function haversine($options) { |
148 | 148 | $formula = '( :earth_radius * ACOS( COS( RADIANS(:origin_latitude) ) * COS( RADIANS(:destination_latitude) ) * COS( RADIANS(:destination_longitude) - RADIANS(:origin_longitude) ) + SIN( RADIANS(:origin_latitude) ) * SIN( RADIANS(:destination_latitude) ) ) )'; |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | public function prepareRow(Row $row) { |
18 | 18 | // Prefix the state per the normal Address schema. |
19 | 19 | if ($state = $row->getSourceProperty('Address State')) { |
20 | - $row->setSourceProperty('Address State', 'US-' . $state); |
|
20 | + $row->setSourceProperty('Address State', 'US-'.$state); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | // Use a cached geolocation if possible. |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | $zip = $row->getSourceProperty('Address Zip'); |
35 | 35 | |
36 | 36 | if ($address && $city && $zip && $state) { |
37 | - $address2 = $address2 ? $address2 . "\n" : ''; |
|
37 | + $address2 = $address2 ? $address2."\n" : ''; |
|
38 | 38 | $address_string = "$address\n$address2$city, $state $zip\nUS"; |
39 | 39 | if ($collection = \Drupal::service('geocoder')->geocode($address_string, ['googlemaps'])) { |
40 | 40 | // Set our value in a similar way to Geofield's LatLon Widget. |
@@ -25,8 +25,7 @@ |
||
25 | 25 | list($lat, $lon) = explode(',', $geolocation); |
26 | 26 | $point = [$lon, $lat]; |
27 | 27 | $row->setSourceProperty('Geofield', \Drupal::service('geofield.wkt_generator')->WktBuildPoint($point)); |
28 | - } |
|
29 | - else { |
|
28 | + } else { |
|
30 | 29 | // Manually geocode from source information. |
31 | 30 | $address = $row->getSourceProperty('Address Line 1'); |
32 | 31 | $address2 = $row->getSourceProperty('Address Line 2'); |
@@ -6,6 +6,6 @@ |
||
6 | 6 | function df_tools_frontend_library_info_alter(&$libraries, $extension) { |
7 | 7 | if ($extension == 'image') { |
8 | 8 | $path = drupal_get_path('module', 'df_tools_frontend'); |
9 | - $libraries['quickedit.inPlaceEditor.image']['js']['/' . $path . '/js/quickedit_image_browser.js'] = []; |
|
9 | + $libraries['quickedit.inPlaceEditor.image']['js']['/'.$path.'/js/quickedit_image_browser.js'] = []; |
|
10 | 10 | } |
11 | 11 | } |
@@ -90,8 +90,7 @@ discard block |
||
90 | 90 | $entity_view_mode_ids = array_keys($this->entityManager()->getViewModes($entity->getEntityTypeId())); |
91 | 91 | if (in_array($view_mode_id, $entity_view_mode_ids)) { |
92 | 92 | $output = $entity->$field_name->view($view_mode_id); |
93 | - } |
|
94 | - else { |
|
93 | + } else { |
|
95 | 94 | // Each part of a custom (non-Entity Display) view mode ID is separated |
96 | 95 | // by a dash; the first part must be the module name. |
97 | 96 | $mode_id_parts = explode('-', $view_mode_id, 2); |
@@ -108,8 +107,7 @@ discard block |
||
108 | 107 | 'html' => $this->renderer->renderRoot($output), |
109 | 108 | ]; |
110 | 109 | return new JsonResponse($data); |
111 | - } |
|
112 | - else { |
|
110 | + } else { |
|
113 | 111 | return new JsonResponse(['main_error' => $this->t('File does not exist.')]); |
114 | 112 | } |
115 | 113 | } |
@@ -48,7 +48,7 @@ |
||
48 | 48 | if ($migration != null) { |
49 | 49 | $definition = $migration->getPluginDefinition(); |
50 | 50 | $dump = Yaml::dump($definition); |
51 | - $file_url = $destination . $migration->id() . '.yml'; |
|
51 | + $file_url = $destination.$migration->id().'.yml'; |
|
52 | 52 | $message = t('Export migration @name?', ['@name' => $name]); |
53 | 53 | if (drush_confirm($message) && $data = file_save_data($dump, $file_url)) { |
54 | 54 | drush_print(t('File saved: @file', ['@file' => $data->getFileUri()])); |
@@ -75,8 +75,7 @@ |
||
75 | 75 | $dir = rtrim($dir, '/'); |
76 | 76 | if ($dir == 'public') { |
77 | 77 | $file_pattern = "[^\/]*"; // Finds anything that does not contain "/", should be fine. |
78 | - } |
|
79 | - else { |
|
78 | + } else { |
|
80 | 79 | $file_pattern = $dir ? $dir . ".+" : ".+"; |
81 | 80 | } |
82 | 81 |
@@ -55,14 +55,14 @@ discard block |
||
55 | 55 | $file_pattern = "[^\/]*"; // Finds anything that does not contain "/", should be fine. |
56 | 56 | } |
57 | 57 | else { |
58 | - $file_pattern = $dir ? $dir . ".+" : ".+"; |
|
58 | + $file_pattern = $dir ? $dir.".+" : ".+"; |
|
59 | 59 | } |
60 | 60 | |
61 | - $regex = "^public:\/\/(" . $file_pattern . ")\.(" . implode($extensions, '|') . ")$"; |
|
61 | + $regex = "^public:\/\/(".$file_pattern.")\.(".implode($extensions, '|').")$"; |
|
62 | 62 | |
63 | 63 | // Query the database for files that match this pattern. |
64 | 64 | $query = db_select('file_managed', 'f') |
65 | - ->condition('filemime', $mimetypes , 'IN') |
|
65 | + ->condition('filemime', $mimetypes, 'IN') |
|
66 | 66 | ->condition('uri', $regex, 'REGEXP'); |
67 | 67 | $total_count = $query->countQuery()->execute()->fetchField(); |
68 | 68 | |
@@ -81,12 +81,12 @@ discard block |
||
81 | 81 | |
82 | 82 | foreach (\Drupal\image\Entity\ImageStyle::loadMultiple() as $name => $style) { |
83 | 83 | if (!empty($excludes) && in_array($style->getName(), $excludes)) { |
84 | - $operations[] = array('drush_log', array('Excluding ' . $name, 'success')); |
|
84 | + $operations[] = array('drush_log', array('Excluding '.$name, 'success')); |
|
85 | 85 | continue; |
86 | 86 | } |
87 | 87 | |
88 | 88 | if (empty($includes[0]) || in_array($style->getName(), $includes)) { |
89 | - $operations[] = array('drush_log', array('Processing ' . $name, 'success')); |
|
89 | + $operations[] = array('drush_log', array('Processing '.$name, 'success')); |
|
90 | 90 | $count = 1; |
91 | 91 | $last_progress = 0; |
92 | 92 | foreach ($files as $file) { |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | if (($progress % 25 === 0 || $progress % 7 === 0) && $progress != $last_progress) { |
100 | 100 | // If we're in the command line, print the percentage, otherwise hide it |
101 | 101 | if (PHP_SAPI === 'cli') { |
102 | - $operations[] = array('drush_print', array('...' . $progress . '%', 0, NULL, ($progress == 100))); |
|
102 | + $operations[] = array('drush_print', array('...'.$progress.'%', 0, NULL, ($progress == 100))); |
|
103 | 103 | } |
104 | 104 | $last_progress = $progress; |
105 | 105 | } |
@@ -231,6 +231,7 @@ |
||
231 | 231 | * Copied from color.module and modified to add variable replacement support. |
232 | 232 | * |
233 | 233 | * @see _color_rewrite_stylesheet |
234 | + * @param string $style |
|
234 | 235 | */ |
235 | 236 | function _df_tools_color_color_rewrite_stylesheet($theme, &$info, &$paths, $palette, $style) { |
236 | 237 | // Prepare color conversion table. |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | return; |
51 | 51 | } |
52 | 52 | |
53 | - $config = \Drupal::configFactory()->getEditable('color.theme.' . $theme); |
|
53 | + $config = \Drupal::configFactory()->getEditable('color.theme.'.$theme); |
|
54 | 54 | |
55 | 55 | // Resolve palette. |
56 | 56 | if ($scheme != '') { |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | // Make sure enough memory is available. |
66 | 66 | if (isset($info['base_image'])) { |
67 | 67 | // Fetch source image dimensions. |
68 | - $source = drupal_get_path('theme', $theme) . '/' . $info['base_image']; |
|
68 | + $source = drupal_get_path('theme', $theme).'/'.$info['base_image']; |
|
69 | 69 | list($width, $height) = getimagesize($source); |
70 | 70 | |
71 | 71 | // We need at least a copy of the source and a target buffer of the same |
@@ -102,28 +102,28 @@ discard block |
||
102 | 102 | } |
103 | 103 | |
104 | 104 | // Prepare target locations for generated files. |
105 | - $id = $theme . '-' . substr(hash('sha256', serialize($palette) . microtime()), 0, 8); |
|
105 | + $id = $theme.'-'.substr(hash('sha256', serialize($palette).microtime()), 0, 8); |
|
106 | 106 | $paths['color'] = 'public://color'; |
107 | - $paths['target'] = $paths['color'] . '/' . $id; |
|
107 | + $paths['target'] = $paths['color'].'/'.$id; |
|
108 | 108 | foreach ($paths as $path) { |
109 | 109 | file_prepare_directory($path, FILE_CREATE_DIRECTORY); |
110 | 110 | } |
111 | - $paths['target'] = $paths['target'] . '/'; |
|
111 | + $paths['target'] = $paths['target'].'/'; |
|
112 | 112 | $paths['id'] = $id; |
113 | - $paths['source'] = drupal_get_path('theme', $theme) . '/'; |
|
113 | + $paths['source'] = drupal_get_path('theme', $theme).'/'; |
|
114 | 114 | $paths['files'] = $paths['map'] = array(); |
115 | 115 | |
116 | 116 | // Save palette and logo location. |
117 | 117 | $config |
118 | 118 | ->set('palette', $palette) |
119 | - ->set('logo', $paths['target'] . 'logo.svg') |
|
119 | + ->set('logo', $paths['target'].'logo.svg') |
|
120 | 120 | ->save(); |
121 | 121 | |
122 | 122 | // Copy over neutral images. |
123 | 123 | foreach ($info['copy'] as $file) { |
124 | 124 | $base = drupal_basename($file); |
125 | - $source = $paths['source'] . $file; |
|
126 | - $filepath = file_unmanaged_copy($source, $paths['target'] . $base); |
|
125 | + $source = $paths['source'].$file; |
|
126 | + $filepath = file_unmanaged_copy($source, $paths['target'].$base); |
|
127 | 127 | $paths['map'][$file] = $base; |
128 | 128 | $paths['files'][] = $filepath; |
129 | 129 | } |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | foreach ($info['css'] as $stylesheet) { |
139 | 139 | // Build a temporary array with CSS files. |
140 | 140 | $files = array(); |
141 | - if (file_exists($paths['source'] . $stylesheet)) { |
|
141 | + if (file_exists($paths['source'].$stylesheet)) { |
|
142 | 142 | $files[] = $stylesheet; |
143 | 143 | } |
144 | 144 | |
@@ -147,11 +147,11 @@ discard block |
||
147 | 147 | // Aggregate @imports recursively for each configured top level CSS file |
148 | 148 | // without optimization. Aggregation and optimization will be |
149 | 149 | // handled by drupal_build_css_cache() only. |
150 | - $style = $css_optimizer->loadFile($paths['source'] . $file, FALSE); |
|
150 | + $style = $css_optimizer->loadFile($paths['source'].$file, FALSE); |
|
151 | 151 | |
152 | 152 | // Return the path to where this CSS file originated from, stripping |
153 | 153 | // off the name of the file at the end of the path. |
154 | - $css_optimizer->rewriteFileURIBasePath = base_path() . dirname($paths['source'] . $file) . '/'; |
|
154 | + $css_optimizer->rewriteFileURIBasePath = base_path().dirname($paths['source'].$file).'/'; |
|
155 | 155 | |
156 | 156 | // Prefix all paths within this CSS file, ignoring absolute paths. |
157 | 157 | $style = preg_replace_callback('/url\([\'"]?(?![a-z]+:|\/+)([^\'")]+)[\'"]?\)/i', array($css_optimizer, 'rewriteFileURI'), $style); |
@@ -159,8 +159,8 @@ discard block |
||
159 | 159 | // Rewrite stylesheet with new colors. |
160 | 160 | $style = _df_tools_color_color_rewrite_stylesheet($theme, $info, $paths, $palette, $style); |
161 | 161 | $base_file = drupal_basename($file); |
162 | - $css[] = $paths['target'] . $base_file; |
|
163 | - _color_save_stylesheet($paths['target'] . $base_file, $style, $paths); |
|
162 | + $css[] = $paths['target'].$base_file; |
|
163 | + _color_save_stylesheet($paths['target'].$base_file, $style, $paths); |
|
164 | 164 | } |
165 | 165 | } |
166 | 166 | |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | |
217 | 217 | // Convert placeholder ids to the format we handle. |
218 | 218 | foreach ($palette_template as $color_id => $color_placeholder) { |
219 | - $palette_template[$color_id] = '#__' . Html::cleanCssIdentifier((string) $color_placeholder, $filter) . '__'; |
|
219 | + $palette_template[$color_id] = '#__'.Html::cleanCssIdentifier((string) $color_placeholder, $filter).'__'; |
|
220 | 220 | } |
221 | 221 | |
222 | 222 | return $palette_template; |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | |
292 | 292 | // Replace paths to images. |
293 | 293 | foreach ($paths['map'] as $before => $after) { |
294 | - $before = base_path() . $paths['source'] . $before; |
|
294 | + $before = base_path().$paths['source'].$before; |
|
295 | 295 | $before = preg_replace('`(^|/)(?!../)([^/]+)/../`', '$1', $before); |
296 | 296 | $output = str_replace($before, $after, $output); |
297 | 297 | } |
@@ -264,8 +264,7 @@ |
||
264 | 264 | else { |
265 | 265 | $chunk = _color_shift($palette[$base], $default_color_mapping[$base], $chunk, $info['blend_target']); |
266 | 266 | } |
267 | - } |
|
268 | - else { |
|
267 | + } else { |
|
269 | 268 | // Determine the most suitable base color for the next color. |
270 | 269 | |
271 | 270 | // 'a' declarations. Use link. |
@@ -235,7 +235,7 @@ |
||
235 | 235 | * @param string $type The project type. |
236 | 236 | * @param string $name The name of the project. |
237 | 237 | * |
238 | - * @return bool FALSE if the project does not exist. |
|
238 | + * @return false|null FALSE if the project does not exist. |
|
239 | 239 | */ |
240 | 240 | function df_tools_translation_import_translations($type, $name) { |
241 | 241 | // Attempt to pull module path. |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | batch_set($batch); |
91 | 91 | // Set a batch to update configuration as well. |
92 | 92 | if ($batch = locale_config_batch_update_components($options, $langcodes)) { |
93 | - $batch['file'] = drupal_get_path('module', 'df_tools_translation') . '/df_tools_translation.batch.inc'; |
|
93 | + $batch['file'] = drupal_get_path('module', 'df_tools_translation').'/df_tools_translation.batch.inc'; |
|
94 | 94 | batch_set($batch); |
95 | 95 | } |
96 | 96 | } |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | |
117 | 117 | // Import each file. |
118 | 118 | foreach ($langcodes as $langcode) { |
119 | - $filepath = DRUPAL_ROOT . '/' . $path . '/translations/' . $langcode . '.po'; |
|
119 | + $filepath = DRUPAL_ROOT.'/'.$path.'/translations/'.$langcode.'.po'; |
|
120 | 120 | if (file_exists($filepath)) { |
121 | 121 | \Drupal::moduleHandler()->loadInclude('locale', 'bulk.inc'); |
122 | 122 | \Drupal::moduleHandler()->loadInclude('locale', 'translation.inc'); |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | ]); |
131 | 131 | |
132 | 132 | $original_file = (object) [ |
133 | - 'filename' => $langcode . '.po', |
|
133 | + 'filename' => $langcode.'.po', |
|
134 | 134 | 'uri' => $filepath |
135 | 135 | ]; |
136 | 136 | $file = locale_translate_file_attach_properties($original_file, $options); |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | if ($langcode == 'en') { |
174 | 174 | $langcode = ''; |
175 | 175 | } |
176 | - $url = \Drupal\Core\Url::fromUri('base:/' . $langcode . $alias); |
|
176 | + $url = \Drupal\Core\Url::fromUri('base:/'.$langcode.$alias); |
|
177 | 177 | |
178 | 178 | $current_name = [ |
179 | 179 | '#markup' => t($language->getName()) |