How To Install drupal7-eva on Fedora 36
Introduction
In this tutorial we learn how to install drupal7-eva
on Fedora 36.
What is drupal7-eva
“Eva” is short for “Entity Views Attachment;” it provides a Views display plugin that allows the output of a View to be attached to the content of any Drupal entity. The body of a node or comment, the profile of a user account, or the listing page for a Taxonomy term are all examples of entity content. The placement of the view in the entity’s content can be reordered on the “Field Display” administration page for that entity, like other fields added using the Field UI module. In addition, the unique ID of the entity the view is attached to – as well as any tokens generated from that entity – can be passed in as arguments to the view. For example, you might make a View that displays posts with an ‘Author ID’ argument, then use Eva to attach the view to the User entity type. When a user profile is displayed, the User’s ID will be passed in as the argument to the view magically.
We can use yum
or dnf
to install drupal7-eva
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install drupal7-eva.
Install drupal7-eva on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install drupal7-eva
using dnf
by running the following command:
sudo dnf -y install drupal7-eva
Install drupal7-eva on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install drupal7-eva
using yum
by running the following command:
sudo yum -y install drupal7-eva
How To Uninstall drupal7-eva on Fedora 36
To uninstall only the drupal7-eva
package we can use the following command:
sudo dnf remove drupal7-eva
drupal7-eva Package Contents on Fedora 36
/usr/share/doc/drupal7-eva
/usr/share/doc/drupal7-eva/README.txt
/usr/share/drupal7/modules/eva
/usr/share/drupal7/modules/eva/eva-display-entity-view.tpl.php
/usr/share/drupal7/modules/eva/eva.info
/usr/share/drupal7/modules/eva/eva.module
/usr/share/drupal7/modules/eva/eva.theme.inc
/usr/share/drupal7/modules/eva/eva.views.inc
/usr/share/drupal7/modules/eva/eva_plugin_display_entity.inc
/usr/share/licenses/drupal7-eva
/usr/share/licenses/drupal7-eva/LICENSE.txt
References
Summary
In this tutorial we learn how to install drupal7-eva
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).