本文整理匯總了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')));
}