<?php
/**
 * @brief		Activity stream items extension: {class}
 * @author		<a href='https://www.invisioncommunity.com'>Invision Power Services, Inc.</a>
 * @copyright	(c) Invision Power Services, Inc.
 * @license		https://www.invisioncommunity.com/legal/standards/
 * @package		Invision Community
{subpackage}
 * @since		{date}
 */

namespace IPS\{app}\extensions\core\StreamItems;

/* To prevent PHP errors (extending class does not exist) revealing path */

use IPS\Extensions\StreamItemsAbstract;
use IPS\Member as MemberClass;
use function defined;

if ( !defined( '\IPS\SUITE_UNIQUE_KEY' ) )
{
	header( ( $_SERVER['SERVER_PROTOCOL'] ?? 'HTTP/1.0' ) . ' 403 Forbidden' );
	exit;
}

/**
 * @brief	Activity stream items extension: {class}
 */
class {class} extends StreamItemsAbstract
{
	/**
	 * Is there content to display?
	 *
	 * @param	MemberClass|NULL	$author		The author to limit extra items to
	 * @param	int|NULL	$lastTime	If provided, only items since this date are included. If NULL, it works out which to include based on what results are being shown
	 * @param	int|NULL	$firstTime	If provided, only items before this date are included. If NULL, it works out which to include based on what results are being shown
	 * @return	array	Array of \IPS\Content\Search\Result\Custom objects
	 */
	public function extraItems( ?MemberClass $author=NULL, ?int $lastTime=NULL, ?int $firstTime=NULL ): array
	{
		// Note!
		// Your application must define a setting and a language string in the format of "all_activity_{application}_{extensionname}" all in lower case. Without this, this plugin will not be executed.
		// This setting will automatically be used to store the administrators choice of whether to show this data or not.

		return array();
	}

}