CategoryForm::attributeLabels PHP Method

attributeLabels() public method

If not declared here, an attribute would have a label that is the same as its name with the first letter in upper case.
public attributeLabels ( )
    public function attributeLabels()
    {
        return array('name' => Yii::t('category', 'Name'), 'metaTagDescription' => Yii::t('category', 'Meta Tag Description'), 'metaTagKeywords' => Yii::t('category', 'Meta Tag Keywords'), 'description' => Yii::t('category', 'Description'), 'parent' => Yii::t('category', 'Parent'), 'filters' => Yii::t('category', 'Filters'), 'stores' => Yii::t('category', 'Stores'), 'seoKeyword' => Yii::t('category', 'SEO Keyword'), 'image' => Yii::t('category', 'Image'), 'top' => Yii::t('category', 'Top'), 'columns' => Yii::t('category', 'Columns'), 'sortOrder' => Yii::t('category', 'Sort Order'), 'status' => Yii::t('category', 'Status'));
    }