コード例 #1
0
 public function addLabel($caption, $style = "label-default", $leftSeparator = " ")
 {
     $label = new HtmlLabel("label-" . $this->identifier, $caption, $style);
     $label->wrap($leftSeparator);
     $this->addContent($label);
     return $this;
 }
コード例 #2
0
 public function addLabel($caption, $style = "label-default", $leftSeparator = " ")
 {
     $label = new HtmlLabel("label-" . $this->identifier, $caption, $style);
     $this->content .= $leftSeparator . $label->compile();
     return $this;
 }