Changes
Title
changed
How to use an application behavior forto maintain runtime configuration
Category
unchanged
How-tos
Yii version
unchanged
Tags
unchanged
application, configuration, behavior
Content
changed
[...]
**components/views/langBox.php**
```php
<?php echo CHtml::form(); ?>
<div id="langdrop">
<?php echo CHtml::dropDownList('_lang', $currentLang, array(
'en_us' => 'English', 'is_is' => 'Icelandic'), array('submit' => '')); ?>
</div>
<?php echo CHtml::endForm(); ?>
```