Este plugin no ha sido probado con ninguna las 3 últimas versiones principales de WordPress. Puede que ya no se mantenga o no tenga soporte, y puede que tenga problemas de compatibilidad cuando se utiliza con versiones más recientes de WordPress.

WP-Logs

Descripción

WP-Logs enables developers to track system events from within the WordPress admin area; i.e., tracking user logins, new posts, comments, etc. It’s also very helpful if you need to build an API on top of WordPress and track usage to make sure everything is functioning correctly.

After installation, a ‘Logs’ tab appears in the admin panel which lists all events that have been sent to it via the simple EventLog() call (see installation for more details).

To see our other work, visit www.shockoe.com. Google Analytics code adapted from work by there4 development.

Capturas de pantalla

  • List of logged events in the admin panel.

Instalación

  • Upload files to your site’s plugin directory
  • Activate WP-Logs in the admin panel
  • Add EventLog line to your theme/plugin code

EventLog()

The EventLog call should resemble this:

$EventLog = new EventLog(array(
‘event’ => ‘Login Successful’,
‘text’ => var_export($_REQUEST,1)
));

The only required parameter is ‘event’; ‘text’ can be any value(s) you want.

Google Analytics Integration

To have your events posted to Google Analytics, add your UA code to line 25 of analytics_events.php. If you are using Yoast’s Google Analytics plugin, you can skip this step as WP-Logs will pull your UA information from the database.

Notifo Integration

WP-Logs integrates with Notifo to make it easy to receive notices of events in realtime to either your phone or desktop. The WP-Notifo plugin is required to use this functionality.

To use it, setup and configure WP-Notifo with your Notifo API keys. Then add a ‘notifo’ line to your EventLog call, e.g.:

$EventLog = new EventLog(array(
    'event' => 'New post',
    'text' => 'A user created a new post',
    'notifo' => 1
));

The last line tells WP-Logs to send this event to Notifo.

Opiniones

No hay reseñas para este plugin.

Colaboradores & Desarrolladores

“WP-Logs” es software de código abierto. Las siguientes personas han contribuido a este plugin.

Colaboradores

Traduce & #8220;WP-Logs” a tu idioma.

¿interesado en el desarrollo?

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

Historial de cambios

0.6

  • Added WP-Notifo integration

0.5.1

  • Remove ‘Add New’ from the admin menu

0.5

  • First version of WP-Logs.