コード例 #1
0
ファイル: view.php プロジェクト: romeo14/wallfeet
<?php

$this->breadcrumbs = array('Property Images' => array('index'), $model->id);
$this->menu = array(array('label' => 'List PropertyImages', 'url' => array('index')), array('label' => 'Create PropertyImages', 'url' => array('create')), array('label' => 'Update PropertyImages', 'url' => array('update', 'id' => $model->id)), array('label' => 'Delete PropertyImages', 'url' => '#', 'linkOptions' => array('submit' => array('delete', 'id' => $model->id), 'confirm' => 'Are you sure you want to delete this item?')), array('label' => 'Manage PropertyImages', 'url' => array('admin')));
?>

<h1>View PropertyImages #<?php 
echo $model->id;
?>
</h1>

<?php 
$this->widget('zii.widgets.CDetailView', array('data' => $model, 'attributes' => array('id', array('name' => 'property_id', 'value' => PropertyApi::getNameByPropertyId($model->property_id)), array('name' => 'image', 'type' => 'raw', 'value' => '<img src="' . PropertyImagesApi::getImageByUrl($model->property_id, $model->image) . '" />'))));
コード例 #2
0
ファイル: PropertyImages.php プロジェクト: romeo14/wallfeet
 public function getLink()
 {
     return '<img src="' . PropertyImagesApi::getImageByUrl($this->property_id, $this->image) . '" />';
     //	return PropertyImagesApi::getImageByUrl($this->property_id,$this->image);
 }