WP Manifestindependent plugin directory
manifest / integrations / rrze-faudir

RRZE FAUdir

Plugin zur Darstellung des Personen- und Einrichtungsverzeichnis der FAU in Websites

by RRZE Webteam · github.com/rrze-webteam/rrze-faudir · website

0stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/rrze-webteam/rrze-faudir/archive/refs/heads/main.zip

Readme

RRZE FAUdir

Plugin zur Darstellung des Personen- und Einrichtungsverzeichnis der FAU in Websites

Contributors

Copyright

GNU General Public License (GPL) Version 3

Documentation

See documenation at https://www.wp.rrze.fau.de

Feedback

Filter for external plugins and themes

To get data from the plugin to use in other plugins or themes, the following filters are avaible.

  • rrze_faudir_get_target_url , input: FAUdir identifier, output: URL

    Example usage:

     $url = apply_filters('rrze_faudir_get_target_url', [], $identifier);

    To add own overwrites:

      add_filter('rrze_faudir_get_target_url', function($url, $identifier){
      // z.B. eigene Routing-Logik, Sonderfälle, Tracking-Parameter …
      return $url;
      }, 20, 2);

    Its also possible to make a direct function call in the following ways:

      $url = \RRZE\FAUdir\Filters::get_target_url($identifier);
    
      // or, if wrapper is avaible:
      $url = function_exists('faudir_get_target_url') ? faudir_get_target_url($identifier) : '';
  • rrze_faudir_get_person_array , input: FAUdir identifier, output: Array with person data

    Example usage:

     $person = apply_filters('rrze_faudir_get_person_array', [], $identifier);

    To add own overwrites:

      add_filter('rrze_faudir_get_person_array', function(array $data, string $identifier) {
      return $data;
      }, 20, 2);

    Its also possible to make a direct function call in the following ways:

      $person = \RRZE\FAUdir\Filters::get_person_array($identifier);
    
      // or, if wrapper is avaible:
      $person = function_exists('faudir_get_person_array') ? faudir_get_person_array($identifier) : [];
  • Abhängig vom Theme werden die Filter

    • fau_elemental_copyright_info (beim Theme FAU Elemental )
    • fau_copyright_info (bei allen anderen FAU-Themes)

    gesetzt. Diese enthalten bei der Ausgabe von Personenbildern mit Copyright-Text den jeweiligen text und die Bild-ID

Read the full README on GitHub →

Releases

TagPublished
v2.6.20 Mar 27, 2026
v2.6 Mar 16, 2026
2.5.33 Dec 8, 2025
v2.5.30 Nov 27, 2025
v2.5 Sep 17, 2025
v2.4 Jul 10, 2025
2.3.7 May 15, 2025
2.3.6 May 12, 2025
2.3.5 May 8, 2025
v2.3 Apr 14, 2025
v1.1 Mar 31, 2025
v1.0 Mar 13, 2025

These releases are tags only. The author does not attach a packaged zip, so there are no download counts to report.