Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CForm フォームビルダー配列で画像を表示する簡単な方法を探しています。しかし、次の例のように、モデルの内容を表示したいと思います。
array( 'elements'=>array( '<img src="$this->thumbnail" />', 'thumbnail'=>array( 'type'=>'file', ), ), )
それは可能ですか?
それを見つけた、これは動作します。
return array( 'elements'=>array( '<img src="'.$this->getModel()->thumbnail.'" alt="" />', 'thumbnail'=>array( 'type'=>'file', ), ), );