Ejemplo n.º 1
0
 public static function getButtons($model)
 {
     $result = '';
     $result .= Html::tag('p', '<b>Цена: ' . Product::getPriceOrOldPrice($model) . ' ' . $model->currency . ' ' . self::getAvail($model) . '</b>');
     $result .= Html::tag('p', Html::a('<button class="btn btn-danger">Купить</button>', ['/cart/add', 'id' => $model->id]));
     return $result;
 }