コード例 #1
0
ファイル: AttributeForm.php プロジェクト: youprofit/Zurmo
 public function __toString()
 {
     $attributeLabel = ModelFormAttributeLabelsUtil::getTranslatedAttributeLabelByLabels($this->attributeLabels);
     if ($attributeLabel == null) {
         return Zurmo::t('DesignerModule', '(Unnamed)');
     }
     return $attributeLabel;
 }
コード例 #2
0
ファイル: LabelElement.php プロジェクト: youprofit/Zurmo
 protected function renderControlNonEditable()
 {
     $attributeLabel = ModelFormAttributeLabelsUtil::getTranslatedAttributeLabelByLabels($this->model->{$this->attribute});
     return Yii::app()->format->text($attributeLabel);
 }