summaryrefslogtreecommitdiff
path: root/protected/views/search/results.php
blob: c1d80e23cf9d69088df2de742fa310d07edd2400 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
$this->breadcrumbs=array(
	'Search'=>array('/search'),
	'Results',
);?>
<h3><?php echo $this->id . '/' . $this->action->id; ?></h3>
<?php foreach ($results as $mod => $res) {?>
	<h6><?php echo $mod ?></h6>
	<?php 
	$dataProvider = new CArrayDataProvider($res);
	$this->widget('zii.widgets.CListView', array(
			'dataProvider'=>$dataProvider,
			'itemView'=>'/cms/'.lcfirst($mod).'/_short',   // refers to the partial view named '_post'
			'sortableAttributes'=>array(
					'name',
					/*'create_time'=>'Post Time',*/
			),
	  ));?>
<?php }?>
<p>
	<pre><?php print_r($results)?></pre>
</p>