コード例 #1
0
 public function addImage($image, $title = "")
 {
     if (!$image instanceof HtmlImage) {
         $image = new HtmlImage("image-" . $this->identifier, $image, $title);
     }
     $image->setClass("image");
     return $this->addElementInContent("content", $image);
 }
コード例 #2
0
ファイル: HtmlImage.php プロジェクト: jcheron/phalcon-jquery
 public static function avatar($identifier, $src = "", $caption = NULL)
 {
     $img = new HtmlImage($identifier, $src);
     return $img->asAvatar($caption);
 }