2014-07-11 19:29:19 +02:00
|
|
|
<?php
|
|
|
|
/* @var $this BlogPostController */
|
|
|
|
/* @var $model BlogPost */
|
|
|
|
|
|
|
|
|
|
|
|
$this->breadcrumbs=array(
|
|
|
|
'Blog Posts'=>array('index'),
|
|
|
|
'Manage',
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->menu=array(
|
|
|
|
array('label'=>'List BlogPost', 'url'=>array('index')),
|
|
|
|
array('label'=>'Create BlogPost', 'url'=>array('create')),
|
|
|
|
);
|
|
|
|
|
|
|
|
Yii::app()->clientScript->registerScript('search', "
|
|
|
|
$('.search-button').click(function(){
|
|
|
|
$('.search-form').toggle();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
$('.search-form form').submit(function(){
|
|
|
|
$('#blog-post-grid').yiiGridView('update', {
|
|
|
|
data: $(this).serialize()
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
");
|
|
|
|
?>
|
|
|
|
|
|
|
|
<h1>Manage Blog Posts</h1>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
You may optionally enter a comparison operator (<b><</b>, <b><=</b>, <b>></b>, <b>>=</b>, <b>
|
|
|
|
<></b>
|
|
|
|
or <b>=</b>) at the beginning of each of your search values to specify how the comparison should be done.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<?php echo CHtml::link('Advanced Search','#',array('class'=>'search-button btn')); ?>
|
|
|
|
<div class="search-form" style="display:none">
|
|
|
|
<?php $this->renderPartial('_search',array(
|
|
|
|
'model'=>$model,
|
|
|
|
)); ?>
|
|
|
|
</div><!-- search-form -->
|
|
|
|
|
|
|
|
<?php $this->widget('bootstrap.widgets.TbGridView',array(
|
|
|
|
'id'=>'blog-post-grid',
|
|
|
|
'dataProvider'=>$model->search(),
|
|
|
|
'filter'=>$model,
|
|
|
|
'columns'=>array(
|
|
|
|
'ID',
|
|
|
|
'Date',
|
2014-07-12 16:42:24 +02:00
|
|
|
'Title',
|
2014-07-11 19:29:19 +02:00
|
|
|
array(
|
|
|
|
'class'=>'bootstrap.widgets.TbButtonColumn',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)); ?>
|