本文整理汇总了PHP中Info::attributeLabels方法的典型用法代码示例。如果您正苦于以下问题:PHP Info::attributeLabels方法的具体用法?PHP Info::attributeLabels怎么用?PHP Info::attributeLabels使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Info
的用法示例。
在下文中一共展示了Info::attributeLabels方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: attributeLabels
/**
* @return array customized attribute labels (name=>label)
*/
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array('id' => Yii::t('Common', 'id'), 'case_status' => Yii::t('CaseInfo', 'case_status'), 'title' => Yii::t('CaseInfo', 'title'), 'case_step' => Yii::t('CaseInfo', 'case_step'), 'delete_flag' => Yii::t('CaseInfo', 'delete_flag'), 'priority' => Yii::t('CaseInfo', 'priority')));
}
示例2: attributeLabels
/**
* @return array customized attribute labels (name=>label)
*/
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array('id' => Yii::t('Common', 'id'), 'bug_status' => Yii::t('BugInfo', 'bug_status'), 'title' => Yii::t('BugInfo', 'title'), 'repeat_step' => Yii::t('BugInfo', 'repeat_step'), 'resolved_at' => Yii::t('BugInfo', 'resolved_at'), 'resolved_by' => Yii::t('BugInfo', 'resolved_by'), 'closed_at' => Yii::t('BugInfo', 'closed_at'), 'closed_by' => Yii::t('BugInfo', 'closed_by'), 'duplicate_id' => Yii::t('BugInfo', 'duplicate_id'), 'solution' => Yii::t('BugInfo', 'solution'), 'reopen_count' => Yii::t('BugInfo', 'reopen_count'), 'priority' => Yii::t('BugInfo', 'priority'), 'severity' => Yii::t('BugInfo', 'severity')));
}