Rev 1688 | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php/*** Using I18Nv2_DecoratedList* ==========================** I18Nv2 provides decorated classes for country and language lists.** $Id: using_I18Nv2_DecoratedList.php,v 1.1 2007-06-25 09:55:25 alexandre_tb Exp $*/require_once 'I18Nv2/Country.php';require_once 'I18Nv2/DecoratedList/HtmlSelect.php';require_once 'I18Nv2/DecoratedList/HtmlEntities.php';$c = &new I18Nv2_Country('it', 'iso-8859-1');$e = &new I18Nv2_DecoratedList_HtmlEntities($c);$s = &new I18Nv2_DecoratedList_HtmlSelect($e);// set some attributes$s->attributes['select']['name'] = 'CountrySelect';$s->attributes['select']['onchange'] = 'this.form.submit()';// set a selected entry$s->selected['DE'] = true;// print a HTML safe select boxecho $s->getAllCodes();?>