if ( is_array( $this -> languages ) ): foreach ( $this -> languages as $lg ):?>
if ( $lg['status'] ):?>
= \Html::input(
array(
'label' => 'Tytuł',
'name' => 'title',
'id' => 'title_' . $lg['id'],
'value' => $this -> container['languages'][ $lg['id'] ]['title'],
'inline' => true
)
);?>
= \Html::textarea(
array(
'label' => 'Treść',
'name' => 'text',
'id' => 'text_' . $lg['id'],
'value' => $this -> container['languages'][ $lg['id'] ]['text'],
'inline' => true
)
);?>
= \Html::textarea(
array(
'label' => 'Kod HTML',
'name' => 'html',
'id' => 'html_' . $lg['id'],
'value' => $this -> container['languages'][ $lg['id'] ]['html'],
'inline' => true
)
);?>
endif;?>
endforeach; endif;?>