@@ -55,8 +55,7 @@ |
||
55 | 55 | |
56 | 56 | drupal_set_message(t('Successfully exported Panelizer display for Node @nid to @panels_file', ['@nid' => $node->id(), '@panels_file' => $panels_file])); |
57 | 57 | return TRUE; |
58 | - } |
|
59 | - else { |
|
58 | + } else { |
|
60 | 59 | drupal_set_message(t('The given Node is not Panelized.'), 'error'); |
61 | 60 | return FALSE; |
62 | 61 | } |
@@ -49,7 +49,7 @@ |
||
49 | 49 | } |
50 | 50 | |
51 | 51 | // Write YAML to a file. |
52 | - $panels_file = $base_path . '/data/panelizer.panels_display.node.'.$node->uuid() . '.yml'; |
|
52 | + $panels_file = $base_path.'/data/panelizer.panels_display.node.'.$node->uuid().'.yml'; |
|
53 | 53 | $configuration = \Drupal::service('panelizer')->getPanelsDisplay($node, 'full')->getConfiguration(); |
54 | 54 | $yaml = \Symfony\Component\Yaml\Yaml::dump($configuration, 99, 2); |
55 | 55 | file_put_contents($panels_file, $yaml); |
@@ -21,7 +21,7 @@ |
||
21 | 21 | |
22 | 22 | public function prepareRow(Row $row) { |
23 | 23 | if ($image_path = $row->getSourceProperty('Image')) { |
24 | - $path = dirname($this->configuration['path']) . '/images/' . $image_path; |
|
24 | + $path = dirname($this->configuration['path']).'/images/'.$image_path; |
|
25 | 25 | |
26 | 26 | $data = file_get_contents($path); |
27 | 27 | $uri = file_build_uri($image_path); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | foreach ($settings['editor']['formats'] as &$format) { |
13 | 13 | // Swap in our custom JS by adding a pseudo plugin. We do this as we do not |
14 | 14 | // provide a button, which is what traditional CKEditor plugins would do. |
15 | - $format['editorSettings']['drupalExternalPlugins']['df_tools_editor'] = base_path() . drupal_get_path('module', 'df_tools_editor') . '/js/df_tools_editor.js'; |
|
15 | + $format['editorSettings']['drupalExternalPlugins']['df_tools_editor'] = base_path().drupal_get_path('module', 'df_tools_editor').'/js/df_tools_editor.js'; |
|
16 | 16 | $format['editorSettings']['extraPlugins'] .= ',df_tools_editor'; |
17 | 17 | } |
18 | 18 | } |
@@ -92,8 +92,7 @@ |
||
92 | 92 | |
93 | 93 | if (!empty($css_classes)) { |
94 | 94 | $form_state->setValue(['attributes', 'class'], $css_classes); |
95 | - } |
|
96 | - else { |
|
95 | + } else { |
|
97 | 96 | $form_state->unsetValue(['attributes', 'class']); |
98 | 97 | } |
99 | 98 | } |
@@ -46,7 +46,7 @@ |
||
46 | 46 | } |
47 | 47 | |
48 | 48 | // Append the prefix before buildRegions. |
49 | - $build['landing-top']['#prefix'] = '<div class="landing-display-' . $class . '">'; |
|
49 | + $build['landing-top']['#prefix'] = '<div class="landing-display-'.$class.'">'; |
|
50 | 50 | |
51 | 51 | // Build the regions via PageBlockDisplayVariant::buildRegions. |
52 | 52 | $build = parent::buildRegions($build); |
@@ -10,7 +10,7 @@ |
||
10 | 10 | */ |
11 | 11 | function df_tools_slideshow_migration_plugins_alter(&$definitions) { |
12 | 12 | // Set up base path. |
13 | - $path = dirname(__FILE__) . '/data/'; |
|
13 | + $path = dirname(__FILE__).'/data/'; |
|
14 | 14 | |
15 | 15 | $migration = _df_migration_copy($definitions['import_block_base'], 'block', 'slideshow', 'block_content', $path); |
16 | 16 | // Add our custom fields. |
@@ -40,8 +40,7 @@ |
||
40 | 40 | $widget_form['#title'] = ''; |
41 | 41 | $widget_form['entity_id']['#title'] = t('Existing slide'); |
42 | 42 | $widget_form['actions']['ief_reference_save']['#value'] = t('Add'); |
43 | - } |
|
44 | - else { |
|
43 | + } else { |
|
45 | 44 | $widget_form['inline_entity_form']['#ief_labels']['singular'] = 'slide'; |
46 | 45 | } |
47 | 46 | } |
@@ -41,8 +41,7 @@ discard block |
||
41 | 41 | if (empty($destination)) { |
42 | 42 | return drush_user_abort(); |
43 | 43 | } |
44 | - } |
|
45 | - elseif (!isset($destination)) { |
|
44 | + } elseif (!isset($destination)) { |
|
46 | 45 | $destination = CONFIG_SYNC_DIRECTORY; |
47 | 46 | } |
48 | 47 | $destination_dir = config_get_config_directory($destination); |
@@ -84,13 +83,11 @@ discard block |
||
84 | 83 | $destination = $destination_dir . basename($source); |
85 | 84 | if (!copy($source, $destination)) { |
86 | 85 | drush_log(dt('New copy from @source to @destination failed.', ['@source' => $source, '@destination' => $destination]), LogLevel::ERROR); |
87 | - } |
|
88 | - else { |
|
86 | + } else { |
|
89 | 87 | _df_tools_config_strip_uuid($destination); |
90 | 88 | drush_log(dt('Successfully created @config.', ['@config' => $config]), LogLevel::OK); |
91 | 89 | } |
92 | - } |
|
93 | - catch (InvalidArgumentException $e) { |
|
90 | + } catch (InvalidArgumentException $e) { |
|
94 | 91 | drush_log(dt('Module @input does not exist or is not enabled.', ['@input' => $input]), LogLevel::ERROR); |
95 | 92 | } |
96 | 93 | } |
@@ -105,8 +102,7 @@ discard block |
||
105 | 102 | $destination = $instances[$choice]; |
106 | 103 | if (!copy($source, $destination)) { |
107 | 104 | drush_log(dt('Copy from @source to @destination failed.', ['@source' => $source, '@destination' => $destination]), LogLevel::ERROR); |
108 | - } |
|
109 | - else { |
|
105 | + } else { |
|
110 | 106 | _df_tools_config_strip_uuid($destination); |
111 | 107 | drush_log(dt('Successfully copied @config.', ['@config' => $config]), LogLevel::OK); |
112 | 108 | } |
@@ -120,8 +116,7 @@ discard block |
||
120 | 116 | if ($choice !== FALSE) { |
121 | 117 | if (!unlink($instances[$choice])) { |
122 | 118 | drush_log(dt('Deletion of @path failed.', ['@path' => $instances[$choice]]), LogLevel::ERROR); |
123 | - } |
|
124 | - else { |
|
119 | + } else { |
|
125 | 120 | drush_log(dt('Successfully deleted @config.', ['@config' => $config]), LogLevel::OK); |
126 | 121 | } |
127 | 122 | } |
@@ -221,8 +216,7 @@ discard block |
||
221 | 216 | file_put_contents($filepath, implode($file)); |
222 | 217 | } |
223 | 218 | return TRUE; |
224 | - } |
|
225 | - else { |
|
219 | + } else { |
|
226 | 220 | return FALSE; |
227 | 221 | } |
228 | 222 | } |
@@ -76,13 +76,13 @@ discard block |
||
76 | 76 | } |
77 | 77 | try { |
78 | 78 | $module_info = \Drupal::moduleHandler()->getModule($input); |
79 | - $destination_dir = DRUPAL_ROOT . '/' . $module_info->getPath() . '/config/install/'; |
|
80 | - $source = DRUPAL_ROOT . '/' . $destination_storage->getFilePath($config); |
|
79 | + $destination_dir = DRUPAL_ROOT.'/'.$module_info->getPath().'/config/install/'; |
|
80 | + $source = DRUPAL_ROOT.'/'.$destination_storage->getFilePath($config); |
|
81 | 81 | // Create /config/install directory if it does not exist. |
82 | 82 | if (!file_exists($destination_dir)) { |
83 | 83 | mkdir($destination_dir, 0755, true); |
84 | 84 | } |
85 | - $destination = $destination_dir . basename($source); |
|
85 | + $destination = $destination_dir.basename($source); |
|
86 | 86 | if (!copy($source, $destination)) { |
87 | 87 | drush_log(dt('New copy from @source to @destination failed.', ['@source' => $source, '@destination' => $destination]), LogLevel::ERROR); |
88 | 88 | } |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | break; |
99 | 99 | case 'update': |
100 | 100 | foreach ($list as $config) { |
101 | - $source = DRUPAL_ROOT . '/' . $destination_storage->getFilePath($config); |
|
101 | + $source = DRUPAL_ROOT.'/'.$destination_storage->getFilePath($config); |
|
102 | 102 | |
103 | 103 | $instances = _df_tools_config_find_config_instances($destination_storage, $config); |
104 | 104 | $choice = drush_choice($instances, dt('Choose update destination for @config.', ['@config' => $config])); |
@@ -152,8 +152,8 @@ discard block |
||
152 | 152 | |
153 | 153 | $iterator = new RecursiveDirectoryIterator(DRUPAL_ROOT, FilesystemIterator::FOLLOW_SYMLINKS); |
154 | 154 | $files = []; |
155 | - foreach(new RecursiveIteratorIterator($iterator) as $file){ |
|
156 | - if(strpos($file, $filename) !== FALSE && strpos($file, DRUPAL_ROOT . '/sites/') === FALSE){ |
|
155 | + foreach (new RecursiveIteratorIterator($iterator) as $file) { |
|
156 | + if (strpos($file, $filename) !== FALSE && strpos($file, DRUPAL_ROOT.'/sites/') === FALSE) { |
|
157 | 157 | $files[] = (string) $file; |
158 | 158 | } |
159 | 159 | } |
@@ -1,4 +1,4 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -include_once drupal_get_path('module', 'locale') . '/locale.bulk.inc'; |
|
4 | -include_once drupal_get_path('module', 'locale') . '/locale.batch.inc'; |
|
3 | +include_once drupal_get_path('module', 'locale').'/locale.bulk.inc'; |
|
4 | +include_once drupal_get_path('module', 'locale').'/locale.batch.inc'; |
@@ -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 | } |