View file phpbb/ads/location/type/slide_up.php

File size: 473B
<?php
/**
 *
 * Advertisement management. An extension for the phpBB Forum Software package.
 *
 * @copyright (c) 2017 phpBB Limited <https://www.phpbb.com>
 * @license GNU General Public License, version 2 (GPL-2.0)
 *
 */

namespace phpbb\ads\location\type;

class slide_up extends base
{
	/**
	 * {@inheritDoc}
	 */
	public function get_id()
	{
		return 'slide_up';
	}

	/**
	 * {@inheritDoc}
	 */
	public function get_category()
	{
		return self::CAT_INTERACTIVE;
	}
}