Salta al contenido
  • Acceder
  • Registro
WordPress.org

Venezuela

  • Temas
  • Plugins
  • Noticias
    • Documentación
    • Foros
  • Acerca de
    • Traduciendo WordPress a español de Venezuela
  • Equipo
  • Meetups
  • Consigue WordPress
Consigue WordPress

Plugins

  • Mis favoritos
  • Pruebas beta
  • Desarrolladores
Descargar

Admin Users Logged In

Por Marcel Pol
  • Detalles
  • Valoraciones
  • Instalación
  • Desarrollo
Soporte

Descripción

Dashboard widget that shows admin users and when they were last logged in.

Compatibility

This plugin is compatible with ClassicPress.

Contributions

This plugin is also available in
Codeberg.

Capturas

  • Dashboard widget with admin users and their last login.

Instalación

Installation

  • Install the plugin through the admin page «Plugins».
  • Alternatively, unpack and upload the contents of the zipfile to your ‘/wp-content/plugins/’ directory.
  • Activate the plugin through the ‘Plugins’ menu in WordPress.
  • Visit the Dashboard. That’s it.

PHP filters for Custom Roles

This first filter is for showing an additional role in the widget.

<?php
    function my_auli_get_role__in( $role__in ) {
        $role__in[] = 'Subscriber';
        return $role__in;
    }
    add_filter( 'auli_get_role__in', 'my_auli_get_role__in' );
?>

This second filter is for who gets to see the widget.

<?php
    function my_auli_show_for_role__in( $role__in ) {
        $role__in[] = 'Customrole';
        return $role__in;
    }
    add_filter( 'auli_show_for_role__in', 'my_auli_show_for_role__in' );
?>

Reseñas

Perfect

Pieterjan Deneys 2 de junio de 2021
Thanks to the easily editable language file, I was able to translate this plugin to my wishes. 🙂 Edit: which is now possible! THANKS!
Leer la 1 reseña

Colaboradores y desarrolladores

«Admin Users Logged In» es un software de código abierto. Las siguientes personas han colaborado con este plugin.

Colaboradores
  • Marcel Pol

«Admin Users Logged In» ha sido traducido a 2 idiomas locales. Gracias a los traductores por sus contribuciones.

Traduce «Admin Users Logged In» a tu idioma.

¿Interesado en el desarrollo?

Revisa el código , echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.

Registro de cambios

1.0.5

  • 2022-05-11
  • Add filter ‘auli_get_role__in’ for showing users with these roles.
  • Remove check for shown users based on capability.
  • Add filter ‘auli_show_for_role__in’ for allowing users to see this widget.
  • No need to check if function ‘current_user_can()’ exists.

1.0.4

  • 2021-06-01
  • Support translations.

1.0.3

  • 2021-05-31
  • Small updates from wpcs.

1.0.2

  • 2018-02-06
  • Fix the location of closing (outside the loop).

1.0.1

  • 2018-02-03
  • Only show the widget on capability ‘edit_posts’.

1.0.0

  • 2018-01-18
  • First release.

Meta

  • Versión: 1.0.5
  • Última actualización: hace 4 semanas
  • Instalaciones activas: 100+
  • Versión de WordPress: 4.4 o superior
  • Probado hasta: 6.4.2
  • Versión de PHP: 7.0 o superior
  • Idiomas:

    Dutch, Dutch (Belgium) y English (US).

    Traducir a tu idioma

  • Etiquetas:
    dashboard widgetlast login
  • Vista avanzada

Valoraciones

Ver todas
  • 5 estrellas 1
  • 4 estrellas 0
  • 3 estrellas 0
  • 2 estrellas 0
  • 1 estrella 0
Accede para enviar una reseña.

Colaboradores

  • Marcel Pol

Soporte

Problemas resueltos en los últimos dos meses:

1 de 1

Ver el foro de soporte

  • Acerca de
  • Noticias
  • Alojamiento
  • Privacidad
  • Escaparate
  • Temas
  • Plugins
  • Patrones
  • Aprender
  • Soporte
  • Desarrolladores
  • WordPress.tv ↗
  • Involúcrate
  • Donate ↗
  • Swag Store ↗
  • WordCamp ↗
  • WordPress.com ↗
  • Matt ↗
  • bbPress ↗
  • BuddyPress ↗
WordPress.org
WordPress.org

Venezuela

  • Visita nuestra página de Facebook
  • Visit our X (formerly Twitter) account
  • Visita nuestra cuenta de Instagram
  • Visita nuestra cuenta de LinkedIn
  • Visita nuestro canal de YouTube
El código es poesía.