Linux webm002.cluster126.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
/
home
/
a
/
r
/
i
/
ariannadhf
/
www
/
wp-content
/
plugins
/
simple-history
/
dropins
/
/home/a/r/i/ariannadhf/www/wp-content/plugins/simple-history/dropins/class-dropin.php
<?php namespace Simple_History\Dropins; use Simple_History\Helpers; use Simple_History\Simple_History; /** * Base class for dropins. */ abstract class Dropin { /** @var Simple_History */ protected Simple_History $simple_history; /** * @param Simple_History $simple_history Simple_History instance. */ public function __construct( $simple_history ) { $this->simple_history = $simple_history; } /** * Fired when Simple History has loaded the dropin. * * @return void */ public function loaded() { // ... } /** * Get the slug for the dropin, * i.e. the unqualified class name. * * @return string */ public function get_slug() { return Helpers::get_class_short_name( $this ); } }