# email-log/trunk/include/Core/Loadie.php

Email Log, version trunk. 21 lines.

- Page: https://pluginprobe.com/plugins/email-log/trunk/code/include/Core/Loadie.php
- Raw: https://pluginprobe.com/plugins/email-log/trunk/raw/include/Core/Loadie.php
- Modified: 2017-08-04T07:10:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/email-log/trunk/code/include/Core/Loadie.php#L10-L20`.

```php
<?php namespace EmailLog\Core;

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

/**
 * EmailLog Loadie interface.
 * The `load()` method of this interface will be called by Email Log.
 * Even though Loadie is not an actual word it sound more logical than subscriber.
 *
 * @since 2.0.0
 */
interface Loadie {

	/**
	 * This method will be called by Email Log after `wp-loaded` event.
	 *
	 * @return void
	 */
	public function load();
}

```
