Beispiel #1
0
 public function attributeLabels()
 {
     return array_merge(parent::attributeLabels(), ['date_from' => 'Дата выхода книги:', 'date_to' => 'до']);
 }
Beispiel #2
0
 /**
  * @inheritdoc
  */
 public function attributeLabels()
 {
     $parent_labels = parent::attributeLabels();
     $my_labels = ['name' => 'Название', 'dateFrom' => 'Дата выхода книги:', 'dateTo' => 'До:', 'fullName' => 'Автор'];
     return array_merge($parent_labels, $my_labels);
 }
Beispiel #3
0
 public function attributeLabels()
 {
     return array_merge(parent::attributeLabels(), ['date_from' => Yii::T('app', 'Date From'), 'date_to' => Yii::T('app', 'Date To')]);
 }
Beispiel #4
0
 public function attributeLabels()
 {
     return array_merge(parent::attributeLabels(), ['dateStart' => 'Дата выхода, с', 'dateEnd' => 'Дата выхода, по']);
 }
Beispiel #5
0
 /**
  * @inheritdoc
  */
 public function attributeLabels()
 {
     return ArrayHelper::merge(parent::attributeLabels(), ['authorName' => 'Автор', 'date_start' => 'Дата выпуска', 'date_end' => 'до']);
 }