Account created on 19 February 2019, about 6 years ago
  • Drupal Backend Developer at QED42 
#

Merge Requests

Recent comments

🇮🇳India mayurgajar

Followed the mentions steps:
1. Setup with drupal 9 and ckeditor 4, added above mention text in ckeditor.. the q tag added source text not changed.
2. Setup with drupal 10 and ckeditor 5, added above mention text in ckeditor.. the q tag added source text has been changed.
3. Go through the ckeditor js, but not able to rectify from where it causes this issue.

Text:

On drupal 10 with ckeditor:
When added this text in ckeditor:

when again check the source code, it changes

🇮🇳India mayurgajar

This is the code, I used to create a media and node programmatically

// Stored file
$image_url = {image url};
$image_content = file_get_contents($image_url);
$filename = basename($image_url);
$file_repository = \Drupal::service('file.repository');

$image = $file_repository->writeData($image_content, "private://". $filename, FileSystemInterface::EXISTS_REPLACE);

// Create a media
$media_storage = \Drupal::entityTypeManager()->getStorage('media');
$media = $media_storage->create([
'bundle' => 'image',
'uid' => 1,
'status' => 1,
'field_media_image' => [
'target_id' => $image->id(),
'alt' => $text,
'title' => $text,
],
]);
$media->setName($text)->setPublished(TRUE)->save();

// Create a node
$node = Node::create([
'type' => 'article',
'title' => 'new article',
'field_blog_image' => [
'target_id' => $media->id(),
'alt' => 'Hello world',
'title' => 'Goodbye world'
],
]);
$node->save();

With this code, we are able to add media and node..
Next step, Create a view of article node and display title and media image - we are able to create a view with title and media image and it rendering correct

Please add any other scenarios if you are still facing any issue to create a media and its view.
For better understanding debug your code like, first check file is created or not.. then check media is created or not and last check node is successfully saved or not

🇮🇳India mayurgajar

Steps to test:
* Add fivestar rating field on content
* Set the Disabled roundoff of the rating value to TRUE
* user should add content rating
* Check the rating values on content - if it has decimal value.. this should display half star rating value

🇮🇳India mayurgajar

We can add configuration field formatter to add - disabled roundoff.. which by default set to FALSE
But if we want to have half star, then set disabled roundoff to TRUE
so we are able to get appropriate data and by using minimum css able to get half star at appropriate place.

🇮🇳India mayurgajar

Comment #8 patch has filename typo issue.

🇮🇳India mayurgajar

Working on this above mention error!

🇮🇳India mayurgajar

Above patch throws error while sending emails, if we used those tokens in email body
Error: Error: Call to undefined function format_date() in give_replace_donation_tokens() (line 231 of /var/www/html/web/modules/contrib/give/give.module).

🇮🇳India mayurgajar

The issue not persist anymore in dev version, Moving this issue for Need Review

🇮🇳India mayurgajar

As per above comment, the issue still persist after applying patch so, this issue still need works

🇮🇳India mayurgajar

Unassigned the issue, as not having permission to perform document edit.

🇮🇳India mayurgajar

Added patch for this feature request.

Along with date, we now able to see the revision id on the rows.

🇮🇳India mayurgajar

Proposed form looks like:
added below image:

Production build 0.71.5 2024