<?php 

defined('C5_EXECUTE') or die(_("Access Denied."));

class KonamiEasterEggPackage extends Package {

	protected $pkgHandle = 'konami_easter_egg';
	protected $appVersionRequired = '5.2.0';
	protected $pkgVersion = '1.0';

	public function getPackageDescription() {
		return t("Adds an easter egg to your site that directs the user to a location of your choice when the Konami Code is entered.");
	}

	public function getPackageName() {
		return t("Konami Easter Egg");
	}

	public function install() {
		$pkg = parent::install();

		// install block
		BlockType::installBlockTypeFromPackage('konami_easter_egg', $pkg);

	}




}