๐Ÿ‡ฎ๐Ÿ‡ณIndia @apatel0325

Account created on 8 February 2022, over 2 years ago
#

Merge Requests

Recent comments

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

Hi @amanmansuri72,

Can you please change the merge request?
You have requested to merge in the main branch but must do in the 1.0.x branch.

Thanks

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

Hi @sime,

As per my research, I can see the branch is going to merge with the main branch and the main branch is empty, so it shows all files added. 5 commits are going to merge with the main branch not only the last commit.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

Hi @sime

I have tested merge request MR.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

I have tested and cannot find any phpcs issue so I move forward to RTBC.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

apatel0325 โ†’ made their first commit to this issueโ€™s fork.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

I have tested it, and it works fine, so I moved to RTCB.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

MR 2! looks good so, I am moving to RTBC

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

@ Jasjeet Kaur Brar

Now looks good.

Thanks!

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

Hi @Jasjeet Kaur Brar

I think the default is not necessary so, you can remove it otherwise it works well.

Thank you.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

Hi @aman_lnwebworks

I have tested your MR! 7 and it's working fine.

Thank you.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

apatel0325 โ†’ changed the visibility of the branch 3376530-code-standards-fixes to hidden.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

apatel0325 โ†’ made their first commit to this issueโ€™s fork.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

Hi @arif.zisu

I have setup Drupal 7.98 with PHP version 8.1 in my local system and enabled this module but I didn't get any issue.

Can you please write bit more like when did you get the error?

Thanks!

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

These errors come from the consumers module so, you have to apply the below patch on the consumers module.
I got the same problem and the issue is fixed when I run the below patch.
Thanks!

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

@ruvus Can you please write bit more so, we can understood very well?
If it's possible please attach snap.
Thank you

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

@Raveen Thakur, May I move this issue to RTBC ?

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

@Raveen Thakur, CSS is override that's why we cannot see on login page. I have attached snap and try with that it's working for me.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

I have tried to compatible in ^9 || ^10 but I get the issue on dependent module so, I think we have to wait for the other modules compatible with ^9.5 || ^10.
Ex: https://www.drupal.org/project/field_limiter โ†’ module dependent on https://www.drupal.org/project/field_formatter โ†’ and it's not compatible with ^9.5 || ^10.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

I tested in my system and it's working on none login page and not working on login page.
I have attached snap please review it.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

I got the same error. I have tried to enable classy theme but I cannot see in the theme list.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

@rkcreation Can you please try below?

// Define your entity class.
class MyEntity extends ContentEntityBase {
// Define your entity properties and fields.
}

// Define your entity type using the ContentEntityType class.
$contentEntityType = ContentEntityType::create([
'id' => 'my_entity',
'label' => 'My Entity',
'entity_class' => MyEntity::class,
'base_table' => 'my_entity',
// Define your entity's fields and storage settings here.
]);

// Implement hook_entity_type_build() to register your entity type with Drupal.
function mymodule_entity_type_build(&$entityTypes) {
$entityTypes['my_entity'] = $contentEntityType;
}

// Define a custom entity form for your entity.
function mymodule_entity_form_display(\Drupal\Core\Entity\EntityInterface $entity, $mode, $form, &$form_state) {
if ($entity->getEntityTypeId() == 'my_entity') {
// Define your custom form display here.
}
}

// Define any additional functionality for your entity.
function mymodule_my_entity_validate(MyEntity $entity) {
// Define your custom validation logic here.
}

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

I have tested in my system and check the checkbox "Include files as attachments" I can get both image and 2 Document in email.
I have attached snap so, please review it.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

Create new custom module and in .module file you have to write above function.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

@Ahmad Khader

Do you want to know the steps for create "confirmed" User role?

Can you please write bit more so, I can understand well?

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

function mymodule_form_alter(&$form, &$form_state, $form_id) {
if ($form_id == 'node_article_form') {
// Set the "Publish on" date to tomorrow's date
$form['options']['status']['scheduled']['publish_on']['#default_value'] = date('Y-m-d', strtotime('+1 day'));
}
}

@rajitha.somarathna Can you please try with the above code?

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

I have updated README.txt to README.md so, if it's fine please merge it.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

apatel0325 โ†’ made their first commit to this issueโ€™s fork.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

I have installed fresh D9.
I have below version and try to update D9.5.7 to D10.0.7
PHP: 8.1.14
composer: 2.2.18 but I run composer self-update command and version is update 2.5.5
I run your given command and Drupal is upgraded.

composer require 'drupal/core-recommended:10.0.7' 'drupal/core-composer-scaffold:10.0.7' 'drupal/core-project-message:10.0.7' --update-with-dependencies --no-update

composer update -W --dry-run

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

@arisen Thank you for letting me know.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

I check with #4 and it fixed the issue.

๐Ÿ‡ฎ๐Ÿ‡ณIndia apatel0325

I haven't used TVI module but if you created views then you can see the contextual filter in Advance tab. It has "Has taxonomy term ID (with depth)" field which will filter result with the child(n) level of the data.

Note: Make sure if view created as taxonomy than you have to add the relationship of node "Representative node". After adding this field you will see the above field.

I have attached snap of that field here

Production build 0.69.0 2024