<?php
function soyshop_item_block_plugin_#int#($html, $page){

	$obj = $page->create("soyshop_item_block_plugin_#int#", "HTMLTemplatePage", array(
		"arguments" => array("soyshop_item_block_plugin_#int#", $html)
	));

	if(!function_exists("soyshop_item_block_plugin")){
		include(dirname(__FILE__) . "/item_block_plugin.php");
	}
	soyshop_item_block_plugin($html, $page);
}
