internetztube / craft-element-relations

Shows all relations of an element.
https://plugins.craftcms.com/element-relations
Other
2 stars 6 forks source link
craft-plugin craftcms

Element Relations Plugin for Craft CMS 4.x and 5.x

This plugin shows all relations of an element. For example, where an asset, entry or any other element is linked.

Feature Requests are welcome!

Share

Requirements

This plugin requires Craft CMS 4.0.0 or 5.0.0 later.

For Craft CMS 4: When using SEOmatic: MySQL 8.0.17+, MariaDB 10.4.6+, or PostgreSQL 13+ is required.

Installation

To install this plugin, follow these steps:

  1. Install with Composer via composer require internetztube/craft-element-relations
  2. Install plugin in the Craft Control Panel under Settings > Plugins

You can also install this plugin via the Plugin Store in the Craft Control Panel.

Support

As a basis the relations table is used. This means that any field that stores relations in the relations table will work out of the box.

Usage in Templates

You would like to use the relation information in your templates, no problemo! There are two methods available for use in Twig Templates and Element API.

elementRelationsGetRelations and RelationsService::getRelations return both an array of Elements.

Twig

{# Expects an Element; Returns an array of Elements. #}
{% set relations = elementRelationsGetRelations(element) %}

{# Expects an Element; Returns a boolen. #}
{% set seomaticGlobal = elementRelationsIsUsedInSeomaticGlobalSettings(element) %}

Element API / PHP

// Expects Element; Returns an array of Elements
$relations = \internetztube\elementRelations\services\RelationsService::getRelations($element)

// Expects an Element; Returns a boolean.
$seomaticGlobal = \internetztube\elementRelations\services\RelationsService::isUsedInSeomaticGlobalSettings($element);

Screenshots

Asset Overview Asset Overview Primary Page


Asset detail Asset Detail


Create Field Field Edit Page


Add to Field Layout Field Edit Page

Issues

Please report any issues you find to the Issues page.

Brought to you by Frederic Koeberl