$Id: readme_jp.txt,v 1.1 2008/02/26 16:05:20 ohwada Exp $

=================================================
HTMLo̓vOC̍
=================================================

vOC "foobar" Ƃ܂

1. vOC̋Lq

htmlout/foobar.php
------
if( !class_exists('weblinks_htmlout_foobar') ) 
{

class weblinks_htmlout_foobar extends weblinks_htmlout_base
{

function weblinks_htmlout_foobar( $dirname )
{
	$this->weblinks_htmlout_base( $dirname );
}

function description()
{
	// ͉p̐
	return "this is foobar description";
}

function execute_plugin()
{
	$content = $this->get_item_by_key( 'content' );
	$converted = xxx;	// ɕϊ
	$this->set_item_by_key( 'content', $converted );
	return true;
}

} // class ̏I
} // class_exists ̏I
-----

2. {̐̋Lq

htmlout/language/japanese/foobar.php
-----
$PLUGIN_DESCRIPTION = " foobar ̐ł";
-----
