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
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
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
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.
Added patch, which will set entity for solr row data.
mayurgajar → created an issue.
Added updated patch.
Comment #8 patch has filename typo issue.
Patch for alpha-5 version.
Working on this above mention error!
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).
The issue not persist anymore in dev version, Moving this issue for Need Review
As per above comment, the issue still persist after applying patch so, this issue still need works
Unassigned the issue, as not having permission to perform document edit.
Added patch for unset maxlenth.
mayurgajar → created an issue.
Added patch for this feature request.
Along with date, we now able to see the revision id on the rows.
Proposed form looks like:
added below image:
mayurgajar → created an issue.