2012-12-19 17:10:46 +00:00
|
|
|
<?php
|
|
|
|
|
Yii::import('zii.widgets.CPortlet');
|
|
|
|
|
|
|
|
|
|
class SearchBlock extends CPortlet {
|
|
|
|
|
|
|
|
|
|
public $title = '';
|
|
|
|
|
|
|
|
|
|
protected function renderContent() {
|
|
|
|
|
echo CHtml::beginForm(array('search/search'), 'get', array('class' => 'input-append'));
|
2013-01-22 18:20:37 +00:00
|
|
|
echo CHtml::textField('keyword', '', array(
|
2012-12-19 17:10:46 +00:00
|
|
|
'placeholder' => Yii::t('profind', 'Buscar...'),
|
|
|
|
|
'class' => 'search_query input-medium')
|
|
|
|
|
);?>
|
|
|
|
|
|
|
|
|
|
<button type="submit" class="btn"><i class="icon-search"></i></button>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php echo CHtml::endForm('');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
|