<?php       
defined('C5_EXECUTE') or die(_("Access Denied."));

class MytiwiPackage extends Package {

	protected $pkgHandle = 'mytiwi';
	protected $appVersionRequired = '5.3.0';
	protected $pkgVersion = '0.9.2';
	
	public function getPackageDescription() {
		return t("MyTiwi - Totally Interactive Weather Info");
	}
	
	public function getPackageName() {
		return t("MyTiwi Weather");
	} 
	
	public function install() {
		$pkg = parent::install();
		
		// install block
		BlockType::installBlockTypeFromPackage('mytiwi', $pkg);
	}

}