bradbulger

Results 20 issues of bradbulger

Rather than change all the tests to use !empty(), create key entries in $attr with NULL values.

In the getAttributes() method of helper_plugin_wrap there's a test of $attr['lang']. It's not always defined, apparently. Changing that test to !empty() clears the warning. - if($attr['lang']) { + if (!empty($attr['lang']))...

The two links in https://drupalconsole.com/docs/en/getting/project/ don't work: - https://drupalconsole.com/docs/en/getting/project/launcher - https://drupalconsole.com/docs/en/getting/project/composer The submenu that appears in the left hand nav menu do work - https://drupalconsole.com/docs/en/getting/composer - https://drupalconsole.com/docs/en/getting/launcher There's also a...

i'm going to http://premailer.dialect.ca/ and pasting in the following HTML: ``` html p { text-align: right; } bet i know what will happen ``` i check only "Remove classes" and...

In the section labeled "INSTALLATION DRUPAL 8.x", there is a bullet item: > You are now presented with different actions you can perform within the group. Such as add group...

Drupal 8
Documentation

Example - an og_role_grant rule on a new membership that grants a Drupal user role to the account. The user role action saves the account. The og_user_node field value does...

Drupal 7

We have a content type that can be a group and sometimes group content as well. (eg node 123, "My Group", is itself an OG group node, and belongs to...

Drupal 7

It's checking OG_ACCESS_FIELD (group_access) which is not defined on the group node content type. The content type was created running og-7.x-2.7, so this may be a backwards-compatibility problem.

Drupal 7

Content type MyType has no Drupal role permissions granted on it at all. It's set up to be used as OG group content. The default (site-wide) OG permission "Create MyType...

Drupal 7