This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: modules/contrib/monolog/src/Logger/Handler/DrupalHandler.php | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
=================================================================== | |
--- modules/contrib/monolog/src/Logger/Handler/DrupalHandler.php (date 1558648851000) | |
+++ modules/contrib/monolog/src/Logger/Handler/DrupalHandler.php (date 1558648897000) | |
@@ -42,18 +42,23 @@ | |
* {@inheritdoc} | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: modules/contrib/metatag/metatag.module | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
=================================================================== | |
--- modules/contrib/metatag/metatag.module (date 1531265292000) | |
+++ modules/contrib/metatag/metatag.module (date 1531265471000) | |
@@ -14,7 +14,6 @@ | |
use Drupal\Core\Routing\RouteMatchInterface; | |
use Drupal\Core\Url; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/Plugin/Field/FieldFormatter/EntityReferenceTabFormatter.php b/src/Plugin/Field/FieldFormatter/EntityReferenceTabFormatter.php | |
index e574175..484f590 100644 | |
--- a/src/Plugin/Field/FieldFormatter/EntityReferenceTabFormatter.php | |
+++ b/src/Plugin/Field/FieldFormatter/EntityReferenceTabFormatter.php | |
@@ -4,10 +4,14 @@ namespace Drupal\entity_ref_tab_formatter\Plugin\Field\FieldFormatter; | |
use Drupal\Component\Utility\Html; | |
use Drupal\Field\FieldConfigInterface; | |
+use Drupal\Core\Entity\EntityDisplayRepositoryInterface; | |
use Drupal\Core\Field\FieldItemInterface; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/modules/gnode/gnode.module b/modules/gnode/gnode.module | |
index d184243..daaf206 100644 | |
--- a/modules/gnode/gnode.module | |
+++ b/modules/gnode/gnode.module | |
@@ -151,7 +151,7 @@ function gnode_node_grants(AccountInterface $account, $op) { | |
if ($group->hasPermission("view $plugin_id entity", $account)) { | |
$grants_m["gnode:$node_type_id"][] = $gid; | |
} | |
- elseif ($group->hasPermission("view unpublished $plugin_id entity", $account)) { | |
+ if ($group->hasPermission("view unpublished $plugin_id entity", $account)) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -u b/modules/ggroup/src/GroupMembershipSubscriber.php b/modules/ggroup/src/GroupMembershipSubscriber.php | |
--- b/modules/ggroup/src/GroupMembershipSubscriber.php | |
+++ b/modules/ggroup/src/GroupMembershipSubscriber.php | |
@@ -143,14 +143,14 @@ | |
$user = $event->getUser(); | |
$memberships = $event->getMemberships(); | |
$supergroup_ids = []; | |
- | |
+ $user_groups_ids = []; | |
foreach ($memberships as $membership) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/group.services.yml b/group.services.yml | |
index a26a87f..d82c9da 100644 | |
--- a/group.services.yml | |
+++ b/group.services.yml | |
@@ -70,7 +70,7 @@ services: | |
- { name: 'context_provider' } | |
group.membership_loader: | |
class: 'Drupal\group\GroupMembershipLoader' | |
- arguments: ['@entity_type.manager', '@current_user'] | |
+ arguments: ['@entity_type.manager', '@current_user', '@event_dispatcher'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>HOLA MUNDO!</title> | |
</head> | |
<body> | |
<h1>HOLA MUNDO!</h1> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
install_atom: false | |
install_keepassx: true | |
install_chrome: true | |
install_slack: true | |
install_dropbox: true | |
install_spotify: true | |
install_node: false | |
install_ruby: false | |
# PHP configuration. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# `vagrant_box` can also be set to geerlingguy/centos6, geerlingguy/centos7, | |
# geerlingguy/ubuntu1404, geerlingguy/ubuntu1204, parallels/ubuntu-14.04, etc. | |
vagrant_box: geerlingguy/ubuntu1404 | |
vagrant_user: vagrant | |
vagrant_synced_folder_default_type: nfs | |
# If you need to run multiple instances of Drupal VM, set a unique hostname, | |
# machine name, and IP address for each instance. | |
vagrant_hostname: monitorsngr.dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Set value for field_seccion_general to the nodes that not have this field set. | |
*/ | |
function incae_custom_functions_update_7003(&$sandbox) { | |
if (!isset($sandbox['progress'])) { | |
$entities = incae_custom_functions_get_unset_field_seccion_genenal_entities('node'); | |
$sandbox['max'] = count($entities) - 1; | |
$sandbox['limit'] = 100; | |
$sandbox['entities'] = array_values(node_load_multiple($entities)); |